mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 14:27:36 +03:00
Reformat eslintrc file
This commit is contained in:
parent
000970ee2c
commit
62a6486d5b
47
.eslintrc.js
47
.eslintrc.js
@ -1,31 +1,30 @@
|
||||
module.exports = {
|
||||
env: {
|
||||
es6: true,
|
||||
browser: true,
|
||||
commonjs: true,
|
||||
node: true
|
||||
},
|
||||
extends: 'eslint:recommended',
|
||||
parserOptions: {
|
||||
sourceType: 'module'
|
||||
},
|
||||
rules: {
|
||||
indent: ['error', 4],
|
||||
module.exports = {
|
||||
env: {
|
||||
es6: true,
|
||||
browser: true,
|
||||
commonjs: true,
|
||||
node: true
|
||||
},
|
||||
extends: 'eslint:recommended',
|
||||
parserOptions: {
|
||||
sourceType: 'module'
|
||||
},
|
||||
rules: {
|
||||
indent: ['error', 4],
|
||||
'linebreak-style': [
|
||||
'error',
|
||||
'error',
|
||||
'unix'
|
||||
],
|
||||
],
|
||||
quotes: [
|
||||
'error',
|
||||
'error',
|
||||
'single'
|
||||
],
|
||||
],
|
||||
semi: [
|
||||
'error',
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'no-console': 0,
|
||||
'no-undef':
|
||||
'warn',
|
||||
'no-unused-vars': 'warn'
|
||||
}
|
||||
],
|
||||
'no-console': 0,
|
||||
'no-undef': 'warn',
|
||||
'no-unused-vars': 'warn'
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user