mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-26 09:11:20 +00:00
28 lines
447 B
JavaScript
28 lines
447 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es6: true
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
],
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly'
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module'
|
|
},
|
|
plugins: [
|
|
'vue'
|
|
],
|
|
rules: {
|
|
'max-len': 0,
|
|
'indent': [2, 'tab'],
|
|
'no-tabs': ["error", { allowIndentationTabs: true }],
|
|
'require-jsdoc': 0,
|
|
'no-invalid-this': 0,
|
|
'guard-for-in': 0
|
|
}
|
|
};
|