Skip to content

Commit a969294

Browse files
author
Arvid Paeglit
committed
temporary fixes of file counter
and optimized file watcher
1 parent c40b15d commit a969294

9 files changed

Lines changed: 1338 additions & 291 deletions

File tree

.eslintrc.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
module.exports = {
2+
'env': {
3+
'es6': true,
4+
'node': true
5+
},
6+
'extends': 'standard',
7+
'globals': {
8+
'Atomics': 'readonly',
9+
'SharedArrayBuffer': 'readonly'
10+
},
11+
// 'parserOptions': {
12+
// 'ecmaVersion': 2018,
13+
// 'sourceType': 'module',
14+
// 'parser': 'babel-eslint'
15+
// },
16+
'rules': {
17+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
18+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
19+
'arrow-parens': [
20+
'error',
21+
'as-needed'
22+
],
23+
'require-jsdoc': 'off',
24+
'space-before-function-paren': 'off',
25+
'semi': 'off',
26+
'comma-dangle': 'off',
27+
'object-curly-spacing': 'warn',
28+
'padded-blocks': 'off',
29+
'camelcase': 'warn',
30+
'object-property-newline': 'off',
31+
'indent': 'warn'
32+
}
33+
}

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ src/**
55
.gitignore
66
vsc-extension-quickstart.md
77
**/tsconfig.json
8-
**/tslint.json
8+
**/.eslintrc.js
99
**/*.map
1010
**/*.ts
1111
**/webpack.config.js

0 commit comments

Comments
 (0)