1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
{
"parserOptions": {
"ecmaVersion": 2015
},
"env": {
"es6": true
},
"globals": {
define: true,
require: true,
exports: true,
module: true,
__dirname: true,
__filename: true,
process: true,
global: true,
importScripts: true,
document: true,
window: true,
location: true,
navigator: true,
console: true,
Worker: true,
postMessage: true,
setTimeout: true,
clearTimeout: true,
setInterval: true,
clearInterval: true,
Blob: true,
cvox: true,
alert: true,
prompt: true,
XMLHttpRequest: true,
localStorage: true,
KeyboardEvent: true,
CustomEvent: true
},
"rules": {
curly: 0,
eqeqeq: 0,
//comma-dangle: 2,
no-dupe-args: 2,
no-dupe-keys: 2,
no-duplicate-case: 2,
no-empty-character-class: 2,
no-empty: 0,
no-ex-assign: 2,
no-extra-parens: 0,
no-func-assign: 2,
no-inner-declarations: 2,
no-invalid-regexp: 2,
no-irregular-whitespace: 2,
no-negated-in-lhs: 2,
no-obj-calls: 2,
no-sparse-arrays: 2,
no-unexpected-multiline: 2,
use-isnan: 2,
valid-typeof: 2,
accessor-pairs: 2,
complexity: 0,
dot-location: [2, "property"],
no-caller: 2,
no-case-declarations: 2,
no-empty-pattern: 2,
no-extra-bind: 2,
// no-useless-escape: 2, unfortunately this rule is broken
no-implied-eval: 2,
no-lone-blocks: 2,
no-native-reassign: 2,
no-new-func: 2,
no-new-wrappers: 2,
no-octal-escape: 2,
no-octal: 2,
no-return-assign: 0,
no-script-url: 2,
no-self-compare: 2,
no-sequences: 2,
no-useless-call: 2,
yoda: 2,
no-undef: 2,
no-redeclare: 0,
no-unused-vars: [1, {"args": "none", "vars": "all"}],
no-debugger: 2,
//////////////////////////////////////////////////////////////////
//
// no-unreachable: 2,
// no-proto: 2,
// no-regex-spaces: 2,
// no-extend-native: 2,
// no-useless-concat: 2,
// no-eval: 2,
// dot-notation: 2,
no-alert: 2,
no-extra-semi: 2, // doesn't handle ;(function() {})() pattern
// radix: 2,
// no-invalid-this: 2,
// no-param-reassign: 2,
// wrap-iife: 2,
// no-throw-literal: 2,
// no-multi-spaces: 2,
// no-new: 2,
// no-else-return: 2,
// no-unused-expressions: 2,
// no-use-before-define: [2, { "functions": false, "classes": false, "variables": false }],
// array-bracket-spacing: 2, // enforce spacing inside array brackets (fixable)
// block-spacing: 2, // disallow or enforce spaces inside of single line blocks (fixable)
// brace-style: 2, // enforce one true brace style
// camelcase: 2, // require camel case names
// comma-spacing: 2, // enforce spacing before and after comma (fixable)
// comma-style: 2, // enforce one true comma style
computed-property-spacing: 2, // require or disallow padding inside computed properties (fixable)
// consistent-this: 2, // enforce consistent naming when capturing the current execution context
linebreak-style: 2, // disallow mixed 'LF' and 'CRLF' as linebreaks
// indent: ["error", 4, { "outerIIFEBody": 0 }], // specify tab or space width for your code (fixable)
// key-spacing: 2, // enforce spacing between keys and values in object literal properties
// new-cap: 2, // require a capital letter for constructors
// new-parens: 2, // disallow the omission of parentheses when invoking a constructor with no arguments
// newline-after-var: 2, // require or disallow an empty newline after variable declarations
no-array-constructor: 2, // disallow use of the Array constructor
// no-lonely-if: 2, // disallow if as the only statement in an else block
no-mixed-spaces-and-tabs: 2, // disallow mixed spaces and tabs for indentation (recommended)
// no-multiple-empty-lines: 2, // disallow multiple empty lines
// no-negated-condition: 2, // disallow negated conditions
// no-nested-ternary: 2, // disallow nested ternary expressions
no-new-object: 2, // disallow the use of the Object constructor
no-restricted-syntax: 2, // disallow use of certain syntax in code
no-spaced-func: 2, // disallow space between function identifier and application (fixable)
// no-trailing-spaces: 2, // disallow trailing whitespace at the end of lines (fixable)
// no-underscore-dangle: 2, // disallow dangling underscores in identifiers
// no-unneeded-ternary: 2, // disallow the use of ternary operators when a simpler alternative exists
// object-curly-spacing: 2, // require or disallow padding inside curly braces (fixable)
// one-var: 2, // require or disallow one variable declaration per function
// operator-assignment: 2, // require assignment operator shorthand where possible or prohibit it entirely
// operator-linebreak: 2, // enforce operators to be placed before or after line breaks
// quotes: [2, "double", "avoid-escape"], // specify whether backticks, double or single quotes should be used (fixable)
// require-jsdoc: 2, // Require JSDoc comment
// semi-spacing: 2, // enforce spacing before and after semicolons
semi: [ 2, "always", { "omitLastInOneLineBlock": false } ]// require or disallow use of semicolons instead of ASI (fixable)
// keyword-spacing: 2, // require a space after certain keywords (fixable)
// space-before-blocks: 2, // require or disallow a space before blocks (fixable)
// space-before-function-paren: 2, // require or disallow a space before function opening parenthesis (fixable)
// space-before-keywords: 2, // require a space before certain keywords (fixable)
// space-in-parens: [2, "never"], // require or disallow spaces inside parentheses
// space-infix-ops: 2, // require spaces around operators (fixable)
// space-unary-ops: 2, // require or disallow spaces before/after unary operators (fixable)
// spaced-comment: [2, "always", { markers: ["-", "*", "/", "{", "}", "#"], exceptions: ["}"] }]
}
}
|