From 06f8b6a5545cec46938c07124fbfe8466b8b2288 Mon Sep 17 00:00:00 2001 From: Manoel Lobo Date: Thu, 23 Aug 2018 07:45:38 -0300 Subject: [PATCH] fix: .eslintrc without extension The use of .eslintrc without extension is deprecated. --- .eslintrc => .eslintrc.json | 0 .github/CONTRIBUTING.md | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .eslintrc => .eslintrc.json (100%) diff --git a/.eslintrc b/.eslintrc.json similarity index 100% rename from .eslintrc rename to .eslintrc.json diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index ab24808be..ebacb44d9 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -47,7 +47,7 @@ This ensures that any changes you've made will still result in a clean and funct ## Coding style -Formatting is automated via [Prettier](https://prettier.io/), setup to run on precommit. We suggest [editor integration](https://prettier.io/docs/en/editors.html) for this and for eslint. Prettier is further configured within `.prettierrc`. Eslint validates syntax and usage that Prettier doesn't handle. Configuration for both is found within the `.eslintrc` file. +Formatting is automated via [Prettier](https://prettier.io/), setup to run on precommit. We suggest [editor integration](https://prettier.io/docs/en/editors.html) for this and for eslint. Prettier is further configured within `.prettierrc`. Eslint validates syntax and usage that Prettier doesn't handle. Configuration for both is found within the `.eslintrc.json` file. The `.editorconfig` controls spaces / tabs within supported editors. Check out their [site](http://editorconfig.org/).