UNPKG

@yamato-daiwa/style_guides

Version:
382 lines (350 loc) 13.5 kB
module.exports = { /* ━━━ ECMAScript Code Validity ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ "array-callback-return": "error", "constructor-super": "error", "getter-return": "error", "no-class-assign": "error", "no-const-assign": "error", "no-constructor-return": "error", "no-ex-assign": "error", "no-func-assign": "error", "no-import-assign": "error", "no-invalid-regexp": "error", "no-new-native-nonconstructor": "error", "no-obj-calls": "error", "no-promise-executor-return": "error", "no-setter-return": "error", "no-this-before-super": "error", "no-undef": "error", "no-unreachable": "error", "no-delete-var": "error", /* ━━━ Algorithmic Errors Preventing ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ "for-direction": "error", "no-async-promise-executor": "error", "no-compare-neg-zero": "error", "no-cond-assign": "error", "no-constant-condition": "error", "no-control-regex": "error", "no-dupe-args": "error", "no-dupe-class-members": "error", "no-dupe-else-if": "error", "no-dupe-keys": "error", "no-duplicate-case": "error", "no-empty-character-class": "error", "no-fallthrough": "error", "no-inner-declarations": "error", "no-irregular-whitespace": [ "error", { skipStrings: true, skipTemplates: true, skipComments: true, skipRegExps: true } ], "no-loss-of-precision": "error", "no-misleading-character-class": "error", "no-prototype-builtins": "error", "no-unmodified-loop-condition": "error", "no-unreachable-loop": "error", "no-unsafe-finally": "error", "no-unsafe-negation": "error", "no-unsafe-optional-chaining": "error", "no-use-before-define": [ "error", { functions: false } ], "require-atomic-updates": "error", "use-isnan": "error", "valid-typeof": "error", "guard-for-in": "error", "no-case-declarations": "error", "no-global-assign": "error", "no-loop-func": "error", "no-shadow": "error", "no-shadow-restricted-names": "error", "operator-assignment": [ "error", "never" ], "prefer-object-has-own": [ "error" ], radix: "error", "require-unicode-regexp": "error", yoda: "error", /* ━━━ Must not be in Production Code ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ "no-debugger": "warn", "no-console": "warn", /* ━━━ Prevention of the Confusing & Stupid Mistakes ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ "no-constant-binary-expression": "error", "no-self-assign": "error", "no-self-compare": "error", "no-sparse-arrays": "error", "no-template-curly-in-string": "error", "no-unexpected-multiline": "error", "class-methods-use-this": "warn", "default-case-last": "error", "default-param-last": "error", "func-names": [ "error", "always" ], "func-style": [ "error", "declaration", { allowArrowFunctions: true } ], "new-cap": [ "error", { capIsNew: false } ], "no-array-constructor": "error", "no-bitwise": "error", "@stylistic/no-confusing-arrow": [ "error", { allowParens: true } ], "no-div-regex": "error", "no-extend-native": "error", "no-extra-boolean-cast": "error", "no-implicit-coercion": "error", "no-implicit-globals": "error", "no-invalid-this": "error", "@stylistic/no-mixed-operators": "error", "no-multi-assign": "error", "no-negated-condition": "error", "no-new": "error", "no-new-func": "error", "no-param-reassign": "error", "no-regex-spaces": "error", "no-sequences": "error", "no-throw-literal": "error", "no-undefined": "error", "no-underscore-dangle": "warn", "no-unused-expressions": "error", "no-useless-escape": "error", "no-useless-rename": "error", "no-useless-return": "error", "no-void": "error", "prefer-numeric-literals": "error", "prefer-promise-reject-errors": "error", "prefer-rest-params": "error", "prefer-spread": "error", "require-await": "error", "require-yield": "error", "symbol-description": "error", /* ━━━ Elimination of Useless Code ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ "no-useless-assignment": "error", "no-useless-backreference": "error", "arrow-body-style": [ "warn", "as-needed" ], "no-else-return": "error", "no-extra-bind": "error", "no-extra-label": "error", "@stylistic/no-extra-semi": "error", "no-new-wrappers": "error", "no-object-constructor": "error", "no-undef-init": "error", "no-unneeded-ternary": "error", "no-useless-call": "error", "no-useless-catch": "error", "no-useless-computed-key": "error", "no-useless-concat": "error", "no-useless-constructor": "error", "object-shorthand": [ "warn", "always", { avoidQuotes: true, avoidExplicitReturnArrows: true } ], "@stylistic/no-extra-parens": [ "warn", "all", { nestedBinaryExpressions: false, nestedConditionalExpressions: false, enforceForArrowConditionals: false } ], /* ━━━ Unification of Equivalent Writings ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ curly: "error", "dot-notation": "warn", "one-var": [ "error", "never" ], "@stylistic/one-var-declaration-per-line": [ "error", "initializations" ], "prefer-object-spread": "error", "prefer-regex-literals": [ "error", { disallowRedundantWrapping: true } ], "@stylistic/array-bracket-newline": [ "warn", "consistent" ], "@stylistic/array-bracket-spacing": [ "warn", "always" ], "@stylistic/array-element-newline": [ "warn", "consistent" ], "@stylistic/arrow-parens": [ "warn", "always" ], "@stylistic/arrow-spacing": [ "warn", { before: true, after: true } ], "@stylistic/block-spacing": [ "warn", "always" ], "@stylistic/brace-style": [ "warn", "1tbs", { allowSingleLine: true } ], "@stylistic/comma-dangle": [ "warn", "never" ], "@stylistic/comma-spacing": [ "warn", { before: false, after: true } ], "@stylistic/comma-style": [ "error", "last" ], "@stylistic/computed-property-spacing": [ "warn", "never" ], "@stylistic/dot-location": [ "warn", "object" ], "@stylistic/function-call-argument-newline": [ "warn", "consistent" ], "@stylistic/function-call-spacing": "warn", "@stylistic/function-paren-newline": [ "warn", "consistent" ], "@stylistic/generator-star-spacing": [ "warn", { before: true, after: false } ], "@stylistic/jsx-quotes": [ "error", "prefer-double" ], "@stylistic/key-spacing": [ "warn", { beforeColon: false, afterColon: true, mode: "strict" } ], "@stylistic/keyword-spacing": [ "warn", { before: true, after: true } ], "logical-assignment-operators": [ "warn", "never" ], "@stylistic/max-statements-per-line": [ "warn", { max: 2 } ], "@stylistic/member-delimiter-style": [ "warn", { multiline: { delimiter: "semi", requireLast: true }, singleline: { delimiter: "semi", requireLast: true } } ], "@stylistic/new-parens": "error", "@stylistic/newline-per-chained-call": [ "warn", { ignoreChainWithDepth: 2 } ], "@stylistic/no-floating-decimal": "error", "@stylistic/no-whitespace-before-property": "warn", "@stylistic/object-curly-spacing": [ "warn", "always" ], "@stylistic/object-property-newline": [ "warn", { allowAllPropertiesOnSameLine: true } ], "@stylistic/operator-linebreak": [ "warn", "after" ], "@stylistic/quote-props": [ "warn", "as-needed" ], "@stylistic/quotes": [ "error", "double", { avoidEscape: true } ], "@stylistic/rest-spread-spacing": [ "warn", "never" ], "@stylistic/semi": "error", "@stylistic/semi-spacing": [ "warn", { before: false, after: true } ], "@stylistic/semi-style": [ "warn", "last" ], "@stylistic/space-before-blocks": "warn", "@stylistic/space-before-function-paren": [ "warn", { anonymous: "always", named: "never", asyncArrow: "always" } ], "@stylistic/space-in-parens": [ "warn", "never" ], "@stylistic/space-infix-ops": "warn", "@stylistic/space-unary-ops": "warn", "@stylistic/switch-colon-spacing": "warn", "@stylistic/template-curly-spacing": [ "warn", "always" ], "@stylistic/template-tag-spacing": [ "warn", "never" ], "@stylistic/wrap-iife": [ "error", "inside" ], "@stylistic/wrap-regex": [ "error" ], "@stylistic/yield-star-spacing": "warn", /* ━━━ Neatness ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ "@stylistic/lines-around-comment": [ "warn", { beforeBlockComment: true } ], "@stylistic/lines-between-class-members": [ "warn", { enforce: [ { blankLine: "always", prev: "field", next: "method" }, { blankLine: "always", prev: "method", next: "method" }, { blankLine: "always", prev: "method", next: "field" } ] } ], "@stylistic/max-len": [ "warn", { code: 130, ignoreUrls: true, ignorePattern: "^\\s{4}\"[@~]?[\\w/:.-]+\";\\s*$" } ], "no-duplicate-imports": "error", "no-empty-pattern": "error", "no-unused-private-class-members": "error", "no-unused-vars": [ "error", { destructuredArrayIgnorePattern: "^_" } ], "capitalized-comments": "warn", "grouped-accessor-pairs": [ "warn", "getBeforeSet" ], "id-denylist": [ "error", "args", "argv", "brsr", "param", "params", "prop", "props" ], "id-length": [ "error", { min: 4, properties: "never", /* [ API ] Case is matters */ exceptions: [ "add", "id", "ID", "key", "Pug", "pug", "Vue", "vue" ] } ], "max-classes-per-file": "error", "max-depth": [ "warn", 3 ], "max-nested-callbacks": [ "error", 2 ], "max-params": [ "error", 3 ], "@stylistic/multiline-comment-style": [ "warn", "bare-block" ], "no-empty": "error", "no-empty-function": "error", "no-empty-static-block": "warn", "no-inline-comments": "error", "no-lone-blocks": "error", "no-lonely-if": "error", "no-magic-numbers": [ "error", { enforceConst: true, ignore: [ -1, 0, 0.5, 1, 2, 10, 100 ] } ], "no-nested-ternary": "error", "no-warning-comments": "warn", "prefer-named-capture-group": "error", "@stylistic/spaced-comment": [ "warn", "always", { block: { markers: [ "!" ], balanced: true } } ], "@stylistic/no-mixed-spaces-and-tabs": "warn", "@stylistic/no-multi-spaces": "warn", "@stylistic/no-multiple-empty-lines": [ "warn", { max: 2, maxBOF: 0, maxEOF: 1 } ], "@stylistic/object-curly-newline": [ "warn", { consistent: true } ], /* ━━━ Preventing of Deprecated or not Recommended Functionality ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ eqeqeq: [ "error", "always" ], "no-alert": "error", "no-caller": "error", "no-eq-null": "error", "no-eval": "error", "no-implied-eval": "error", "no-iterator": "error", "no-label-var": "error", "no-labels": "error", "no-nonoctal-decimal-escape": "error", "no-octal": "error", "no-octal-escape": "error", "no-proto": "error", "no-script-url": "error", "no-var": "error", "no-with": "error", strict: "error", /* ━━━ Other ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ "no-await-in-loop": "error", "prefer-arrow-callback": "warn", "prefer-const": "error", "@stylistic/eol-last": [ "warn" ], "unicode-bom": "error" };