Skip to content

Commit

Permalink
fix indentation in config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Illustrova committed Oct 21, 2020
1 parent 1a7b1f1 commit 22e09c0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"env": {
"browser": true,
"node": true,
"commonjs": true
},
"env": {
"browser": true,
"node": true,
"commonjs": true
},
"parser": "babel-eslint",
"rules": {
"strict": 0,
"no-console": 1
"strict": 0,
"no-console": 1
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"settings": {
Expand Down
26 changes: 13 additions & 13 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"overrides": [
{
"files": [
"*.md, *.mdx"
],
"options": {
"printWidth": 70,
"useTabs": false,
"trailingComma": "none",
"proseWrap": "never"
}
}
]
"overrides": [
{
"files": [
"*.md, *.mdx"
],
"options": {
"printWidth": 70,
"useTabs": false,
"trailingComma": "none",
"proseWrap": "never"
}
}
]
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@
},
"lint-staged": {
"*.{js,jsx,md,mdx}": [
"prettier --write",
"eslint --fix"
]
"prettier --write",
"eslint --fix"
]
}
}

0 comments on commit 22e09c0

Please sign in to comment.