Skip to content

Commit

Permalink
Feature/upgrade eslint (#479)
Browse files Browse the repository at this point in the history
* upgrade eslint version

* removing react eslint plugins

* removing more unused eslint plugins

* updating version to correct current version

* restoring to previous idl logic

* restoring more old package json

* resetting package-lock

* removing cup. updating vue lint plugin

* disabling vue specific rule which is not needed

* fixing https issue

* second attempt to fix failing CI

* hopefully final fix for ci build

* restoring from old package lock files from master
  • Loading branch information
just-at-uber authored Jun 2, 2022
1 parent f50c9d2 commit 2b15dc2
Show file tree
Hide file tree
Showing 4 changed files with 31,263 additions and 811 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const currentYear = (new Date()).getFullYear();
module.exports = {
extends: [
'plugin:prettier/recommended',
'eslint-config-fusion',
'plugin:vue/essential',
],
env: {
Expand All @@ -15,11 +14,13 @@ module.exports = {
scenario: true, // mocha
should: true, // mocha
},
parserOptions: {
ecmaVersion: 2020,
},
plugins: ['jest', 'import', 'eslint-plugin-header'],
rules: {
curly: ['error', 'all'],
'dot-notation': 'error',
'flowtype/require-valid-file-annotation': [2, 'never'],
'header/header': [
'error',
'line',
Expand Down Expand Up @@ -151,6 +152,7 @@ module.exports = {
'order': ['script', 'template', 'style'],
}
],
'vue/multi-word-component-names': 'off',
},
settings: {
'import/resolver': {
Expand Down
Loading

0 comments on commit 2b15dc2

Please sign in to comment.