mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +03:00
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
module.exports = {
|
|
env: {
|
|
node: true,
|
|
jest: true
|
|
},
|
|
|
|
extends: [
|
|
'standard',
|
|
'plugin:lodash-template/recommended',
|
|
'plugin:node/recommended'
|
|
],
|
|
|
|
'parserOptions': {
|
|
'ecmaVersion': 2020
|
|
},
|
|
|
|
'plugins': [
|
|
'node',
|
|
'security'
|
|
],
|
|
|
|
globals: {
|
|
__statics: true,
|
|
process: true
|
|
},
|
|
|
|
// add your custom rules here
|
|
rules: {
|
|
// allow console.log during development only
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
// allow debugger during development only
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-process-exit': 'off',
|
|
'security/detect-non-literal-fs-filename': 'warn',
|
|
'security/detect-unsafe-regex': 'error',
|
|
'security/detect-buffer-noassert': 'error',
|
|
'security/detect-child-process': 'warn',
|
|
'security/detect-disable-mustache-escape': 'error',
|
|
'security/detect-eval-with-expression': 'error',
|
|
'security/detect-no-csrf-before-method-override': 'error',
|
|
'security/detect-non-literal-regexp': 'error',
|
|
'security/detect-non-literal-require': 'warn',
|
|
'security/detect-object-injection': 'warn',
|
|
'security/detect-possible-timing-attacks': 'error',
|
|
'security/detect-pseudoRandomBytes': 'error'
|
|
}
|
|
}
|