Skip to content
This repository was archived by the owner on May 14, 2023. It is now read-only.

Commit 904d427

Browse files
committed
JS moderning tools config files are configured.
- eslint - postcss - babel
1 parent cba195e commit 904d427

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

. babelrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
"env"
4+
]
5+
}

. eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/*

.eslintrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "airbnb-base",
3+
"plugins": [
4+
"import",
5+
"html"
6+
]
7+
}

postcss.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/* eslint-disable import/no-extraneous-dependencies */
2+
const autoprefixer = require('autoprefixer');
3+
4+
module.exports = {
5+
plugins: [
6+
autoprefixer,
7+
],
8+
};

0 commit comments

Comments
 (0)