tc-source-content-updater
Version:
Module that updates source content for the desktop application translationCore.
54 lines (52 loc) • 1.08 kB
Plain Text
{
"extends": [
"eslint:recommended",
"google"
],
"plugins": [
"jest"
],
"settings": {},
"rules": {
"arrow-parens": "warn",
"comma-dangle": "warn",
"curly": "off",
"guard-for-in": "off",
"indent": "off",
"linebreak-style": "off",
"max-len": "off",
"no-console": "off",
"no-duplicate-imports": [
"error",
{
"includeExports": false
}
],
"no-negated-condition" : "off",
"no-nested-ternary": "off",
"no-throw-literal": "off",
"no-undef": "warn",
"no-unused-vars": "warn",
"no-warning-comments": "warn",
"padded-blocks": "warn",
"prefer-const": "warn",
"quotes": "warn",
"quote-props": "warn",
"radix": "off",
"semi": ["error", "always", {"omitLastInOneLineBlock": true}],
"space-before-function-paren": "off"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"modules": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"jest/globals": true
}
}