aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.eslintrc.json37
1 files changed, 0 insertions, 37 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
deleted file mode 100644
index b70099c..0000000
--- a/.eslintrc.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "env": {
- "browser": true,
- "es6": true,
- "node": true
- },
- "extends": [
- "standard"
- ],
- "parserOptions": {
- "ecmaVersion": 11,
- "sourceType": "module"
- },
- "plugins": [
- "html",
- "markdown",
- "prefer-arrow"
- ],
- "overrides": [
- {
- "files": [ "**/*.md" ],
- "processor": "markdown/markdown"
- }
- ],
- "rules": {
- "prefer-arrow/prefer-arrow-functions": [
- "error",
- {
- "disallowPrototype": true,
- "singleReturnOnly": false,
- "classPropertiesAllowed": false
- }
- ],
- "func-style": ["error", "expression"],
- "arrow-parens": ["error", "always"]
- }
-}