mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-14 12:16:12 +09:00
remove timer and simon
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "Program",
|
||||
"body": [],
|
||||
"sourceType": "script",
|
||||
"range": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"loc": {
|
||||
"start": {
|
||||
"line": 0,
|
||||
"column": 0
|
||||
},
|
||||
"end": {
|
||||
"line": 0,
|
||||
"column": 0
|
||||
}
|
||||
},
|
||||
"comments": [],
|
||||
"tokens": []
|
||||
}
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"categories": [
|
||||
{ "name": "Possible Errors", "description": "These rules relate to possible syntax or logic errors in JavaScript code:" },
|
||||
{ "name": "Best Practices", "description": "These rules relate to better ways of doing things to help you avoid problems:" },
|
||||
{ "name": "Strict Mode", "description": "These rules relate to strict mode directives:" },
|
||||
{ "name": "Variables", "description": "These rules relate to variable declarations:" },
|
||||
{ "name": "Node.js and CommonJS", "description": "These rules relate to code running in Node.js, or in browsers with CommonJS:" },
|
||||
{ "name": "Stylistic Issues", "description": "These rules relate to style guidelines, and are therefore quite subjective:" },
|
||||
{ "name": "ECMAScript 6", "description": "These rules relate to ES6, also known as ES2015:" }
|
||||
],
|
||||
"deprecated": {
|
||||
"name": "Deprecated",
|
||||
"description": "These rules have been deprecated in accordance with the [deprecation policy](/docs/user-guide/rule-deprecation), and replaced by newer rules:",
|
||||
"rules": []
|
||||
},
|
||||
"removed": {
|
||||
"name": "Removed",
|
||||
"description": "These rules from older versions of ESLint (before the [deprecation policy](/docs/user-guide/rule-deprecation) existed) have been replaced by newer rules:",
|
||||
"rules": [
|
||||
{ "removed": "generator-star", "replacedBy": ["generator-star-spacing"] },
|
||||
{ "removed": "global-strict", "replacedBy": ["strict"] },
|
||||
{ "removed": "no-arrow-condition", "replacedBy": ["no-confusing-arrow", "no-constant-condition"] },
|
||||
{ "removed": "no-comma-dangle", "replacedBy": ["comma-dangle"] },
|
||||
{ "removed": "no-empty-class", "replacedBy": ["no-empty-character-class"] },
|
||||
{ "removed": "no-empty-label", "replacedBy": ["no-labels"] },
|
||||
{ "removed": "no-extra-strict", "replacedBy": ["strict"] },
|
||||
{ "removed": "no-reserved-keys", "replacedBy": ["quote-props"] },
|
||||
{ "removed": "no-space-before-semi", "replacedBy": ["semi-spacing"] },
|
||||
{ "removed": "no-wrap-func", "replacedBy": ["no-extra-parens"] },
|
||||
{ "removed": "space-after-function-name", "replacedBy": ["space-before-function-paren"] },
|
||||
{ "removed": "space-after-keywords", "replacedBy": ["keyword-spacing"] },
|
||||
{ "removed": "space-before-function-parentheses", "replacedBy": ["space-before-function-paren"] },
|
||||
{ "removed": "space-before-keywords", "replacedBy": ["keyword-spacing"] },
|
||||
{ "removed": "space-in-brackets", "replacedBy": ["object-curly-spacing", "array-bracket-spacing"] },
|
||||
{ "removed": "space-return-throw-case", "replacedBy": ["keyword-spacing"] },
|
||||
{ "removed": "space-unary-word-ops", "replacedBy": ["space-unary-ops"] },
|
||||
{ "removed": "spaced-line-comment", "replacedBy": ["spaced-comment"] }
|
||||
]
|
||||
}
|
||||
}
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
/**
|
||||
* @fileoverview Defines a schema for configs.
|
||||
* @author Sylvan Mably
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
const baseConfigProperties = {
|
||||
env: { type: "object" },
|
||||
globals: { type: "object" },
|
||||
parser: { type: ["string", "null"] },
|
||||
parserOptions: { type: "object" },
|
||||
plugins: { type: "array" },
|
||||
rules: { type: "object" },
|
||||
settings: { type: "object" },
|
||||
|
||||
ecmaFeatures: { type: "object" } // deprecated; logs a warning when used
|
||||
};
|
||||
|
||||
const overrideProperties = Object.assign(
|
||||
{},
|
||||
baseConfigProperties,
|
||||
{
|
||||
files: {
|
||||
oneOf: [
|
||||
{ type: "string" },
|
||||
{
|
||||
type: "array",
|
||||
items: { type: "string" },
|
||||
minItems: 1
|
||||
}
|
||||
]
|
||||
},
|
||||
excludedFiles: {
|
||||
oneOf: [
|
||||
{ type: "string" },
|
||||
{
|
||||
type: "array",
|
||||
items: { type: "string" }
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
const topLevelConfigProperties = Object.assign(
|
||||
{},
|
||||
baseConfigProperties,
|
||||
{
|
||||
extends: { type: ["string", "array"] },
|
||||
root: { type: "boolean" },
|
||||
overrides: {
|
||||
type: "array",
|
||||
items: {
|
||||
type: "object",
|
||||
properties: overrideProperties,
|
||||
required: ["files"],
|
||||
additionalProperties: false
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
const configSchema = {
|
||||
type: "object",
|
||||
properties: topLevelConfigProperties,
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
module.exports = configSchema;
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* @fileoverview Default CLIEngineOptions.
|
||||
* @author Ian VanSchooten
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
module.exports = {
|
||||
configFile: null,
|
||||
baseConfig: false,
|
||||
rulePaths: [],
|
||||
useEslintrc: true,
|
||||
envs: [],
|
||||
globals: [],
|
||||
extensions: [".js"],
|
||||
ignore: true,
|
||||
ignorePath: null,
|
||||
cache: false,
|
||||
|
||||
/*
|
||||
* in order to honor the cacheFile option if specified
|
||||
* this option should not have a default value otherwise
|
||||
* it will always be used
|
||||
*/
|
||||
cacheLocation: "",
|
||||
cacheFile: ".eslintcache",
|
||||
fix: false,
|
||||
allowInlineConfig: true,
|
||||
reportUnusedDisableDirectives: false
|
||||
};
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* @fileoverview Default config options
|
||||
* @author Teddy Katz
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* Freezes an object and all its nested properties
|
||||
* @param {Object} obj The object to deeply freeze
|
||||
* @returns {Object} `obj` after freezing it
|
||||
*/
|
||||
function deepFreeze(obj) {
|
||||
if (obj === null || typeof obj !== "object") {
|
||||
return obj;
|
||||
}
|
||||
|
||||
Object.keys(obj).map(key => obj[key]).forEach(deepFreeze);
|
||||
return Object.freeze(obj);
|
||||
}
|
||||
|
||||
module.exports = deepFreeze({
|
||||
env: {},
|
||||
globals: {},
|
||||
rules: {},
|
||||
settings: {},
|
||||
parser: "espree",
|
||||
parserOptions: {}
|
||||
});
|
||||
+231
@@ -0,0 +1,231 @@
|
||||
/**
|
||||
* @fileoverview Defines environment settings and globals.
|
||||
* @author Elan Shanker
|
||||
*/
|
||||
"use strict";
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Requirements
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
const globals = require("globals");
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Public Interface
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
module.exports = {
|
||||
builtin: globals.es5,
|
||||
browser: {
|
||||
|
||||
/*
|
||||
* For backward compatibility.
|
||||
* Remove those on the next major release.
|
||||
*/
|
||||
globals: Object.assign(
|
||||
{
|
||||
AutocompleteErrorEvent: false,
|
||||
CDATASection: false,
|
||||
ClientRect: false,
|
||||
ClientRectList: false,
|
||||
CSSAnimation: false,
|
||||
CSSTransition: false,
|
||||
CSSUnknownRule: false,
|
||||
CSSViewportRule: false,
|
||||
Debug: false,
|
||||
DocumentTimeline: false,
|
||||
DOMSettableTokenList: false,
|
||||
ElementTimeControl: false,
|
||||
FederatedCredential: false,
|
||||
FileError: false,
|
||||
HTMLAppletElement: false,
|
||||
HTMLBlockquoteElement: false,
|
||||
HTMLIsIndexElement: false,
|
||||
HTMLKeygenElement: false,
|
||||
HTMLLayerElement: false,
|
||||
IDBEnvironment: false,
|
||||
InputMethodContext: false,
|
||||
MediaKeyError: false,
|
||||
MediaKeyEvent: false,
|
||||
MediaKeys: false,
|
||||
opera: false,
|
||||
PasswordCredential: false,
|
||||
ReadableByteStream: false,
|
||||
SharedKeyframeList: false,
|
||||
showModalDialog: false,
|
||||
SiteBoundCredential: false,
|
||||
SVGAltGlyphDefElement: false,
|
||||
SVGAltGlyphElement: false,
|
||||
SVGAltGlyphItemElement: false,
|
||||
SVGAnimateColorElement: false,
|
||||
SVGAnimatedPathData: false,
|
||||
SVGAnimatedPoints: false,
|
||||
SVGColor: false,
|
||||
SVGColorProfileElement: false,
|
||||
SVGColorProfileRule: false,
|
||||
SVGCSSRule: false,
|
||||
SVGCursorElement: false,
|
||||
SVGDocument: false,
|
||||
SVGElementInstance: false,
|
||||
SVGElementInstanceList: false,
|
||||
SVGEvent: false,
|
||||
SVGExternalResourcesRequired: false,
|
||||
SVGFilterPrimitiveStandardAttributes: false,
|
||||
SVGFitToViewBox: false,
|
||||
SVGFontElement: false,
|
||||
SVGFontFaceElement: false,
|
||||
SVGFontFaceFormatElement: false,
|
||||
SVGFontFaceNameElement: false,
|
||||
SVGFontFaceSrcElement: false,
|
||||
SVGFontFaceUriElement: false,
|
||||
SVGGlyphElement: false,
|
||||
SVGGlyphRefElement: false,
|
||||
SVGHKernElement: false,
|
||||
SVGICCColor: false,
|
||||
SVGLangSpace: false,
|
||||
SVGLocatable: false,
|
||||
SVGMissingGlyphElement: false,
|
||||
SVGPaint: false,
|
||||
SVGPathSeg: false,
|
||||
SVGPathSegArcAbs: false,
|
||||
SVGPathSegArcRel: false,
|
||||
SVGPathSegClosePath: false,
|
||||
SVGPathSegCurvetoCubicAbs: false,
|
||||
SVGPathSegCurvetoCubicRel: false,
|
||||
SVGPathSegCurvetoCubicSmoothAbs: false,
|
||||
SVGPathSegCurvetoCubicSmoothRel: false,
|
||||
SVGPathSegCurvetoQuadraticAbs: false,
|
||||
SVGPathSegCurvetoQuadraticRel: false,
|
||||
SVGPathSegCurvetoQuadraticSmoothAbs: false,
|
||||
SVGPathSegCurvetoQuadraticSmoothRel: false,
|
||||
SVGPathSegLinetoAbs: false,
|
||||
SVGPathSegLinetoHorizontalAbs: false,
|
||||
SVGPathSegLinetoHorizontalRel: false,
|
||||
SVGPathSegLinetoRel: false,
|
||||
SVGPathSegLinetoVerticalAbs: false,
|
||||
SVGPathSegLinetoVerticalRel: false,
|
||||
SVGPathSegList: false,
|
||||
SVGPathSegMovetoAbs: false,
|
||||
SVGPathSegMovetoRel: false,
|
||||
SVGRenderingIntent: false,
|
||||
SVGStylable: false,
|
||||
SVGTests: false,
|
||||
SVGTransformable: false,
|
||||
SVGTRefElement: false,
|
||||
SVGURIReference: false,
|
||||
SVGViewSpec: false,
|
||||
SVGVKernElement: false,
|
||||
SVGZoomAndPan: false,
|
||||
SVGZoomEvent: false,
|
||||
TimeEvent: false,
|
||||
XDomainRequest: false,
|
||||
XMLHttpRequestProgressEvent: false,
|
||||
XPathException: false,
|
||||
XPathNamespace: false,
|
||||
XPathNSResolver: false
|
||||
},
|
||||
globals.browser
|
||||
)
|
||||
},
|
||||
node: {
|
||||
|
||||
/*
|
||||
* For backward compatibility.
|
||||
* Remove those on the next major release.
|
||||
*/
|
||||
globals: Object.assign(
|
||||
{ arguments: false, GLOBAL: false, root: false },
|
||||
globals.node
|
||||
),
|
||||
parserOptions: {
|
||||
ecmaFeatures: {
|
||||
globalReturn: true
|
||||
}
|
||||
}
|
||||
},
|
||||
commonjs: {
|
||||
globals: globals.commonjs,
|
||||
parserOptions: {
|
||||
ecmaFeatures: {
|
||||
globalReturn: true
|
||||
}
|
||||
}
|
||||
},
|
||||
"shared-node-browser": {
|
||||
globals: globals["shared-node-browser"]
|
||||
},
|
||||
worker: {
|
||||
globals: globals.worker
|
||||
},
|
||||
amd: {
|
||||
globals: globals.amd
|
||||
},
|
||||
mocha: {
|
||||
globals: globals.mocha
|
||||
},
|
||||
jasmine: {
|
||||
globals: globals.jasmine
|
||||
},
|
||||
jest: {
|
||||
|
||||
/*
|
||||
* For backward compatibility.
|
||||
* Remove those on the next major release.
|
||||
*/
|
||||
globals: Object.assign(
|
||||
{ check: false, gen: false },
|
||||
globals.jest
|
||||
)
|
||||
},
|
||||
phantomjs: {
|
||||
globals: globals.phantomjs
|
||||
},
|
||||
jquery: {
|
||||
globals: globals.jquery
|
||||
},
|
||||
qunit: {
|
||||
globals: globals.qunit
|
||||
},
|
||||
prototypejs: {
|
||||
globals: globals.prototypejs
|
||||
},
|
||||
shelljs: {
|
||||
globals: globals.shelljs
|
||||
},
|
||||
meteor: {
|
||||
globals: globals.meteor
|
||||
},
|
||||
mongo: {
|
||||
globals: globals.mongo
|
||||
},
|
||||
protractor: {
|
||||
globals: globals.protractor
|
||||
},
|
||||
applescript: {
|
||||
globals: globals.applescript
|
||||
},
|
||||
nashorn: {
|
||||
globals: globals.nashorn
|
||||
},
|
||||
serviceworker: {
|
||||
globals: globals.serviceworker
|
||||
},
|
||||
atomtest: {
|
||||
globals: globals.atomtest
|
||||
},
|
||||
embertest: {
|
||||
globals: globals.embertest
|
||||
},
|
||||
webextensions: {
|
||||
globals: globals.webextensions
|
||||
},
|
||||
es6: {
|
||||
globals: globals.es2015,
|
||||
parserOptions: {
|
||||
ecmaVersion: 6
|
||||
}
|
||||
},
|
||||
greasemonkey: {
|
||||
globals: globals.greasemonkey
|
||||
}
|
||||
};
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* @fileoverview Config to enable all rules.
|
||||
* @author Robert Fletcher
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Requirements
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
const load = require("../lib/load-rules"),
|
||||
Rules = require("../lib/rules");
|
||||
const rules = new Rules();
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Helpers
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
const enabledRules = Object.keys(load()).reduce((result, ruleId) => {
|
||||
if (!rules.get(ruleId).meta.deprecated) {
|
||||
result[ruleId] = "error";
|
||||
}
|
||||
return result;
|
||||
}, {});
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Public Interface
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
module.exports = { rules: enabledRules };
|
||||
+271
@@ -0,0 +1,271 @@
|
||||
/**
|
||||
* @fileoverview Configuration applied when a user configuration extends from
|
||||
* eslint:recommended.
|
||||
* @author Nicholas C. Zakas
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
/* eslint sort-keys: ["error", "asc"] */
|
||||
|
||||
module.exports = {
|
||||
rules: {
|
||||
"accessor-pairs": "off",
|
||||
"array-bracket-newline": "off",
|
||||
"array-bracket-spacing": "off",
|
||||
"array-callback-return": "off",
|
||||
"array-element-newline": "off",
|
||||
"arrow-body-style": "off",
|
||||
"arrow-parens": "off",
|
||||
"arrow-spacing": "off",
|
||||
"block-scoped-var": "off",
|
||||
"block-spacing": "off",
|
||||
"brace-style": "off",
|
||||
"callback-return": "off",
|
||||
camelcase: "off",
|
||||
"capitalized-comments": "off",
|
||||
"class-methods-use-this": "off",
|
||||
"comma-dangle": "off",
|
||||
"comma-spacing": "off",
|
||||
"comma-style": "off",
|
||||
complexity: "off",
|
||||
"computed-property-spacing": "off",
|
||||
"consistent-return": "off",
|
||||
"consistent-this": "off",
|
||||
"constructor-super": "error",
|
||||
curly: "off",
|
||||
"default-case": "off",
|
||||
"dot-location": "off",
|
||||
"dot-notation": "off",
|
||||
"eol-last": "off",
|
||||
eqeqeq: "off",
|
||||
"for-direction": "off",
|
||||
"func-call-spacing": "off",
|
||||
"func-name-matching": "off",
|
||||
"func-names": "off",
|
||||
"func-style": "off",
|
||||
"function-paren-newline": "off",
|
||||
"generator-star-spacing": "off",
|
||||
"getter-return": "off",
|
||||
"global-require": "off",
|
||||
"guard-for-in": "off",
|
||||
"handle-callback-err": "off",
|
||||
"id-blacklist": "off",
|
||||
"id-length": "off",
|
||||
"id-match": "off",
|
||||
"implicit-arrow-linebreak": "off",
|
||||
indent: "off",
|
||||
"indent-legacy": "off",
|
||||
"init-declarations": "off",
|
||||
"jsx-quotes": "off",
|
||||
"key-spacing": "off",
|
||||
"keyword-spacing": "off",
|
||||
"line-comment-position": "off",
|
||||
"linebreak-style": "off",
|
||||
"lines-around-comment": "off",
|
||||
"lines-around-directive": "off",
|
||||
"lines-between-class-members": "off",
|
||||
"max-depth": "off",
|
||||
"max-len": "off",
|
||||
"max-lines": "off",
|
||||
"max-nested-callbacks": "off",
|
||||
"max-params": "off",
|
||||
"max-statements": "off",
|
||||
"max-statements-per-line": "off",
|
||||
"multiline-comment-style": "off",
|
||||
"multiline-ternary": "off",
|
||||
"new-cap": "off",
|
||||
"new-parens": "off",
|
||||
"newline-after-var": "off",
|
||||
"newline-before-return": "off",
|
||||
"newline-per-chained-call": "off",
|
||||
"no-alert": "off",
|
||||
"no-array-constructor": "off",
|
||||
"no-await-in-loop": "off",
|
||||
"no-bitwise": "off",
|
||||
"no-buffer-constructor": "off",
|
||||
"no-caller": "off",
|
||||
"no-case-declarations": "error",
|
||||
"no-catch-shadow": "off",
|
||||
"no-class-assign": "error",
|
||||
"no-compare-neg-zero": "error",
|
||||
"no-cond-assign": "error",
|
||||
"no-confusing-arrow": "off",
|
||||
"no-console": "error",
|
||||
"no-const-assign": "error",
|
||||
"no-constant-condition": "error",
|
||||
"no-continue": "off",
|
||||
"no-control-regex": "error",
|
||||
"no-debugger": "error",
|
||||
"no-delete-var": "error",
|
||||
"no-div-regex": "off",
|
||||
"no-dupe-args": "error",
|
||||
"no-dupe-class-members": "error",
|
||||
"no-dupe-keys": "error",
|
||||
"no-duplicate-case": "error",
|
||||
"no-duplicate-imports": "off",
|
||||
"no-else-return": "off",
|
||||
"no-empty": "error",
|
||||
"no-empty-character-class": "error",
|
||||
"no-empty-function": "off",
|
||||
"no-empty-pattern": "error",
|
||||
"no-eq-null": "off",
|
||||
"no-eval": "off",
|
||||
"no-ex-assign": "error",
|
||||
"no-extend-native": "off",
|
||||
"no-extra-bind": "off",
|
||||
"no-extra-boolean-cast": "error",
|
||||
"no-extra-label": "off",
|
||||
"no-extra-parens": "off",
|
||||
"no-extra-semi": "error",
|
||||
"no-fallthrough": "error",
|
||||
"no-floating-decimal": "off",
|
||||
"no-func-assign": "error",
|
||||
"no-global-assign": "error",
|
||||
"no-implicit-coercion": "off",
|
||||
"no-implicit-globals": "off",
|
||||
"no-implied-eval": "off",
|
||||
"no-inline-comments": "off",
|
||||
"no-inner-declarations": "error",
|
||||
"no-invalid-regexp": "error",
|
||||
"no-invalid-this": "off",
|
||||
"no-irregular-whitespace": "error",
|
||||
"no-iterator": "off",
|
||||
"no-label-var": "off",
|
||||
"no-labels": "off",
|
||||
"no-lone-blocks": "off",
|
||||
"no-lonely-if": "off",
|
||||
"no-loop-func": "off",
|
||||
"no-magic-numbers": "off",
|
||||
"no-mixed-operators": "off",
|
||||
"no-mixed-requires": "off",
|
||||
"no-mixed-spaces-and-tabs": "error",
|
||||
"no-multi-assign": "off",
|
||||
"no-multi-spaces": "off",
|
||||
"no-multi-str": "off",
|
||||
"no-multiple-empty-lines": "off",
|
||||
"no-native-reassign": "off",
|
||||
"no-negated-condition": "off",
|
||||
"no-negated-in-lhs": "off",
|
||||
"no-nested-ternary": "off",
|
||||
"no-new": "off",
|
||||
"no-new-func": "off",
|
||||
"no-new-object": "off",
|
||||
"no-new-require": "off",
|
||||
"no-new-symbol": "error",
|
||||
"no-new-wrappers": "off",
|
||||
"no-obj-calls": "error",
|
||||
"no-octal": "error",
|
||||
"no-octal-escape": "off",
|
||||
"no-param-reassign": "off",
|
||||
"no-path-concat": "off",
|
||||
"no-plusplus": "off",
|
||||
"no-process-env": "off",
|
||||
"no-process-exit": "off",
|
||||
"no-proto": "off",
|
||||
"no-prototype-builtins": "off",
|
||||
"no-redeclare": "error",
|
||||
"no-regex-spaces": "error",
|
||||
"no-restricted-globals": "off",
|
||||
"no-restricted-imports": "off",
|
||||
"no-restricted-modules": "off",
|
||||
"no-restricted-properties": "off",
|
||||
"no-restricted-syntax": "off",
|
||||
"no-return-assign": "off",
|
||||
"no-return-await": "off",
|
||||
"no-script-url": "off",
|
||||
"no-self-assign": "error",
|
||||
"no-self-compare": "off",
|
||||
"no-sequences": "off",
|
||||
"no-shadow": "off",
|
||||
"no-shadow-restricted-names": "off",
|
||||
"no-spaced-func": "off",
|
||||
"no-sparse-arrays": "error",
|
||||
"no-sync": "off",
|
||||
"no-tabs": "off",
|
||||
"no-template-curly-in-string": "off",
|
||||
"no-ternary": "off",
|
||||
"no-this-before-super": "error",
|
||||
"no-throw-literal": "off",
|
||||
"no-trailing-spaces": "off",
|
||||
"no-undef": "error",
|
||||
"no-undef-init": "off",
|
||||
"no-undefined": "off",
|
||||
"no-underscore-dangle": "off",
|
||||
"no-unexpected-multiline": "error",
|
||||
"no-unmodified-loop-condition": "off",
|
||||
"no-unneeded-ternary": "off",
|
||||
"no-unreachable": "error",
|
||||
"no-unsafe-finally": "error",
|
||||
"no-unsafe-negation": "error",
|
||||
"no-unused-expressions": "off",
|
||||
"no-unused-labels": "error",
|
||||
"no-unused-vars": "error",
|
||||
"no-use-before-define": "off",
|
||||
"no-useless-call": "off",
|
||||
"no-useless-computed-key": "off",
|
||||
"no-useless-concat": "off",
|
||||
"no-useless-constructor": "off",
|
||||
"no-useless-escape": "error",
|
||||
"no-useless-rename": "off",
|
||||
"no-useless-return": "off",
|
||||
"no-var": "off",
|
||||
"no-void": "off",
|
||||
"no-warning-comments": "off",
|
||||
"no-whitespace-before-property": "off",
|
||||
"no-with": "off",
|
||||
"nonblock-statement-body-position": "off",
|
||||
"object-curly-newline": "off",
|
||||
"object-curly-spacing": "off",
|
||||
"object-property-newline": "off",
|
||||
"object-shorthand": "off",
|
||||
"one-var": "off",
|
||||
"one-var-declaration-per-line": "off",
|
||||
"operator-assignment": "off",
|
||||
"operator-linebreak": "off",
|
||||
"padded-blocks": "off",
|
||||
"padding-line-between-statements": "off",
|
||||
"prefer-arrow-callback": "off",
|
||||
"prefer-const": "off",
|
||||
"prefer-destructuring": "off",
|
||||
"prefer-numeric-literals": "off",
|
||||
"prefer-promise-reject-errors": "off",
|
||||
"prefer-reflect": "off",
|
||||
"prefer-rest-params": "off",
|
||||
"prefer-spread": "off",
|
||||
"prefer-template": "off",
|
||||
"quote-props": "off",
|
||||
quotes: "off",
|
||||
radix: "off",
|
||||
"require-await": "off",
|
||||
"require-jsdoc": "off",
|
||||
"require-yield": "error",
|
||||
"rest-spread-spacing": "off",
|
||||
semi: "off",
|
||||
"semi-spacing": "off",
|
||||
"semi-style": "off",
|
||||
"sort-imports": "off",
|
||||
"sort-keys": "off",
|
||||
"sort-vars": "off",
|
||||
"space-before-blocks": "off",
|
||||
"space-before-function-paren": "off",
|
||||
"space-in-parens": "off",
|
||||
"space-infix-ops": "off",
|
||||
"space-unary-ops": "off",
|
||||
"spaced-comment": "off",
|
||||
strict: "off",
|
||||
"switch-colon-spacing": "off",
|
||||
"symbol-description": "off",
|
||||
"template-curly-spacing": "off",
|
||||
"template-tag-spacing": "off",
|
||||
"unicode-bom": "off",
|
||||
"use-isnan": "error",
|
||||
"valid-jsdoc": "off",
|
||||
"valid-typeof": "error",
|
||||
"vars-on-top": "off",
|
||||
"wrap-iife": "off",
|
||||
"wrap-regex": "off",
|
||||
"yield-star-spacing": "off",
|
||||
yoda: "off"
|
||||
}
|
||||
};
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"rules": {
|
||||
"generator-star": ["generator-star-spacing"],
|
||||
"global-strict": ["strict"],
|
||||
"no-arrow-condition": ["no-confusing-arrow", "no-constant-condition"],
|
||||
"no-comma-dangle": ["comma-dangle"],
|
||||
"no-empty-class": ["no-empty-character-class"],
|
||||
"no-empty-label": ["no-labels"],
|
||||
"no-extra-strict": ["strict"],
|
||||
"no-reserved-keys": ["quote-props"],
|
||||
"no-space-before-semi": ["semi-spacing"],
|
||||
"no-wrap-func": ["no-extra-parens"],
|
||||
"space-after-function-name": ["space-before-function-paren"],
|
||||
"space-after-keywords": ["keyword-spacing"],
|
||||
"space-before-function-parentheses": ["space-before-function-paren"],
|
||||
"space-before-keywords": ["keyword-spacing"],
|
||||
"space-in-brackets": ["object-curly-spacing", "array-bracket-spacing", "computed-property-spacing"],
|
||||
"space-return-throw-case": ["keyword-spacing"],
|
||||
"space-unary-word-ops": ["space-unary-ops"],
|
||||
"spaced-line-comment": ["spaced-comment"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user