mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-10 15:21:03 +00:00
40 lines
738 B
JavaScript
40 lines
738 B
JavaScript
module.exports = {
|
|
rules: {
|
|
indent: [
|
|
2,
|
|
4,
|
|
{"SwitchCase": 1}
|
|
],
|
|
quotes: [
|
|
2,
|
|
'single'
|
|
],
|
|
'linebreak-style': [
|
|
2,
|
|
'unix'
|
|
],
|
|
semi: [
|
|
2,
|
|
'always'
|
|
],
|
|
'max-len': 0,
|
|
'require-jsdoc': 0,
|
|
'padded-blocks': 0,
|
|
'no-throw-literal': 0,
|
|
camelcase: 0,
|
|
'valid-jsdoc': 0,
|
|
'no-unused-vars': 1,
|
|
'no-path-concat': 1,
|
|
'quote-props': [2, 'as-needed']
|
|
},
|
|
env: {
|
|
es6: true,
|
|
browser: true,
|
|
node: true
|
|
},
|
|
ecmaFeatures: {
|
|
modules: true
|
|
},
|
|
extends: 'google'
|
|
};
|