mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-07-09 12:49:11 +00:00
base layout, data, components
This commit is contained in:
parent
e3efb084b8
commit
8878d9f878
29 changed files with 482 additions and 64 deletions
28
.eslintrc.js
Normal file
28
.eslintrc.js
Normal file
|
@ -0,0 +1,28 @@
|
|||
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
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue