diff --git a/.editorconfig b/.editorconfig index 8b86fba..8561bc2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,4 +9,7 @@ trim_trailing_whitespace = true [*.md] max_line_length = off -trim_trailing_whitespace = false \ No newline at end of file +trim_trailing_whitespace = false + +[.eslintrc.json] +indent_size = 4 diff --git a/.eslintrc.js b/.eslintrc.json similarity index 75% rename from .eslintrc.js rename to .eslintrc.json index bcea7a1..2291264 100644 --- a/.eslintrc.js +++ b/.eslintrc.json @@ -1,4 +1,4 @@ -module.exports = { +{ "env": { "browser": true, "es2021": true @@ -18,5 +18,11 @@ module.exports = { "react" ], "rules": { + "react/prop-types": "off" + }, + "settings": { + "react": { + "version": "17.0" + } } -}; +}