matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

.eslintrc.json (860B)


      1 {
      2   "plugins": [
      3     "tailwindcss",
      4     "@typescript-eslint"
      5   ],
      6   "parser": "@typescript-eslint/parser",
      7   "extends": [
      8     "eslint:recommended",
      9     "plugin:@typescript-eslint/recommended",
     10     "plugin:unicorn/recommended",
     11     "plugin:tailwindcss/recommended"
     12   ],
     13   "rules": {
     14     "no-unused-vars": "off",
     15     "@typescript-eslint/no-unused-vars": [
     16       "warn",
     17       {
     18         "argsIgnorePattern": "^_"
     19       }
     20     ],
     21     "@typescript-eslint/ban-ts-comment": "off",
     22     "tailwindcss/classnames-order": "off",
     23     "unicorn/prevent-abbreviations": "off",
     24     "unicorn/filename-case": "off",
     25     "unicorn/prefer-ternary": "off",
     26     "unicorn/no-lonely-if": "off",
     27     "unicorn/empty-brace-spaces": "off",
     28     "unicorn/prefer-node-protocol": "off",
     29     "unicorn/import-style": [
     30       "error",
     31       {
     32         "checkDynamicImport": false
     33       }
     34     ]
     35   }
     36 }