Skip to content

Commit

Permalink
Update ESLint and fix new issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bennothommo committed Mar 10, 2022
1 parent 9bc4f49 commit 8ee3f87
Show file tree
Hide file tree
Showing 9 changed files with 386 additions and 10 deletions.
13 changes: 11 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,17 @@ module.exports = {
'vue/no-parsing-error': ['error', {
'invalid-first-character-of-tag-name': false,
}],
'vue/multi-word-component-names': 'off',
'vuejs-accessibility/label-has-for': 'off',
'vuejs-accessibility/tabindex-no-positive': 'off',
},
parserOptions: {
parser: 'babel-eslint',
settings: {
'import/resolver': {
alias: {
map: [
['@', './src'],
],
},
},
},
};
Loading

0 comments on commit 8ee3f87

Please sign in to comment.