Skip to content

Commit 9265558

Browse files
committed
fixed project root eslint rc file
1 parent a04b102 commit 9265558

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.eslintrc.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ module.exports = {
1414
'import/resolver': {
1515
alias: {
1616
map: [
17-
['@core', `${__dirname}/node_modules/@enso-ui/ui/src`],
18-
['@calendar', `${__dirname}/node_modules/@enso-ui/calendar/src/bulma`],
19-
['@financials', `${__dirname}/node_modules/@enso-ui/financials/src/bulma`],
17+
['@core', `${__dirname}/client/node_modules/@enso-ui/ui/src`],
18+
['@calendar', `${__dirname}/client/node_modules/@enso-ui/calendar/src/bulma`],
2019
],
2120
},
2221
},
@@ -32,7 +31,7 @@ module.exports = {
3231
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
3332
indent: ['error', 4],
3433
'vue/html-indent': 0,
35-
// 'vue/attributes-order': 0,
34+
'vue/attributes-order': 0,
3635
'no-plusplus': 0,
3736
'no-param-reassign': 0,
3837
'no-mixed-operators': 0,

0 commit comments

Comments
 (0)