this repo has no description
at cactus 80 lines 2.4 kB view raw
1{ 2 "name": "markup2", "version": "0.6.2", 3 "author": 12, "contributors": ["y", "cherry", "nicole"], 4 "description": "sbs/qcs markup parser", 5 "keywords": ["markup", "12y2", "12y", "bbcode"], 6 "license": "only my friends are allowed to use this", 7 "repository": "github:12Me21/markup2", 8 9 "eslintConfig": { 10 "root": true, 11 "ignorePatterns": [ 12 "*", 13 "!parse.js", "!langs.js", "!legacy.js", "!render.js", 14 "!helpers.js", "!runtime.js", "!static-render.js" 15 ], 16 "env": { 17 "shared-node-browser": true 18 }, 19 "parserOptions": { 20 "ecmaVersion": 2015, 21 "sourceType": "script", 22 "//": "alternatively, ecmaVersion=2022 and sourceType=module" 23 }, 24 "globals": { 25 "module": "readonly", 26 "Symbol": "readonly" 27 }, 28 "overrides": [{ 29 "files": ["render.js", "helpers.js", "runtime.js"], 30 "env": {"browser": true} 31 }, { 32 "files": ["helpers.js"], 33 "globals": { 34 "Markup_Langs": "readonly", 35 "Markup_12y2": "readonly", 36 "Markup_Legacy": "readonly", 37 "Markup_Render_Dom": "readonly" 38 } 39 }], 40 "extends": "eslint:recommended", 41 "rules": { 42 "semi": ["warn", "never"], 43 "semi-style": ["warn", "first"], 44 "no-extra-semi": ["off"], 45 "no-irregular-whitespace": ["off"], 46 "indent": ["error", "tab"], 47 "no-mixed-spaces-and-tabs": ["error", "smart-tabs"], 48 "linebreak-style": ["error"], 49 "no-unreachable": ["off"], 50 "no-cond-assign": ["off"], 51 "no-unused-vars": ["error", {"args": "none"}], 52 "no-empty": ["off"], 53 "no-constant-condition": ["off"], 54 "no-unsafe-finally": ["off"], 55 "no-var": ["error"], 56 "array-bracket-newline": ["warn", "consistent"], 57 "array-bracket-spacing": ["warn", "never"], 58 "block-spacing": ["warn", "always"], 59 "comma-dangle": ["warn", { 60 "arrays": "always-multiline", 61 "objects": "always-multiline", 62 "functions": "never" 63 }], 64 "no-useless-escape": ["off"], 65 "comma-spacing": ["warn"], 66 "comma-style": ["warn"], 67 "computed-property-spacing": ["warn"], 68 "dot-location": ["error", "property"], 69 "func-call-spacing": ["error"], 70 "keyword-spacing": ["warn"], 71 "max-len": ["error", {"code": 400}], 72 "new-parens": ["warn"], 73 "no-extra-parens": ["warn"], 74 "no-trailing-spaces": ["warn", {"skipBlankLines": true}], 75 "no-whitespace-before-property": ["error"], 76 "object-curly-newline": ["warn"], 77 "operator-linebreak": ["error"] 78 } 79 }, 80"": 0}