Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thedevs-network/kutt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPouria Ezzati <ezzati.upt@gmail.com>2018-02-13 15:34:29 +0300
committerPouria Ezzati <ezzati.upt@gmail.com>2018-02-13 15:34:29 +0300
commit6af694826d718220f1c3c1dafffca141b599bcd9 (patch)
treebcad1450224c5ec006cd8f2275a2e69d5f45050d /.eslintrc
👾
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc34
1 files changed, 34 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 0000000..27689c0
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,34 @@
+{
+ "extends": [
+ "airbnb",
+ "prettier",
+ "prettier/react"
+ ],
+ "parser": "babel-eslint",
+ "env": {
+ "browser": true,
+ "node": true
+ },
+ "rules": {
+ "react/jsx-filename-extension": [
+ 1,
+ {
+ "extensions": [
+ ".js",
+ ".jsx"
+ ]
+ }
+ ],
+ "prettier/prettier": [
+ "error",
+ {
+ "trailingComma": "es5",
+ "singleQuote": true,
+ "printWidth": 100
+ }
+ ]
+ },
+ "plugins": [
+ "prettier"
+ ]
+} \ No newline at end of file