Skip to content

Commit 178d6a4

Browse files
committed
updated with local
2 parents bcfec17 + 4be0503 commit 178d6a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+8958
-3254
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
kalaam.js
2+
.vue

.eslintrc.js

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,33 @@
11
module.exports = {
2-
"extends": "eslint:recommended",
3-
"parser": "babel-eslint",
4-
"rules": {
2+
'extends': 'eslint:recommended',
3+
'parser': 'babel-eslint',
4+
'env': {
5+
'browser': true,
6+
'node': true,
7+
},
8+
'rules': {
59
// enable additional rules
6-
"indent": ["error", 4],
7-
"linebreak-style": ["error", "unix"],
8-
"quotes": ["error", "double"],
9-
"semi": ["error", "always"],
10+
'indent': ['error', 4,],
11+
'linebreak-style': ['error', 'unix',],
12+
'quotes': ['error', 'single',],
13+
'semi': ['error', 'always',],
1014

1115
// override default options for rules from base configurations
12-
"comma-dangle": ["error", "always"],
16+
'comma-dangle': ['error', 'always',],
1317

14-
"no-cond-assign": ["error", "always"],
18+
'no-cond-assign': ['error', 'always',],
1519

1620

1721

1822
// disable rules from base configurations
19-
"no-console": "off",
20-
"no-useless-escape":"off",
21-
"no-irregular-whitespace":"off",
22-
"no-self-assign":"off",
23-
"no-redeclare":"off"
23+
'no-console': 'off',
24+
'no-useless-escape':'off',
25+
'no-irregular-whitespace':'off',
26+
'no-self-assign':'off',
27+
'no-redeclare': 'off',
28+
'no-inner-declarations': 'off',
29+
'no-case-declarations':'off'
2430

2531

26-
}
27-
}
32+
},
33+
};

0 commit comments

Comments
 (0)