Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit eac9e1f

Browse files
committed
Merge branch 'task/add-eslint' into task/add-prettier
2 parents cdcdcf1 + 49b8283 commit eac9e1f

File tree

5 files changed

+83
-0
lines changed

5 files changed

+83
-0
lines changed

eslint/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# @bufferapp/eslint-config-bufferapp
2+
3+
This is the standard ESLint config files for the projects within the @bufferapp
4+
GitHub organization.
5+
6+
## Usage
7+
8+
```console
9+
npm install --save-dev @bufferapp/eslint-config eslint
10+
# or
11+
yarn add -D @bufferapp/eslint-config eslint
12+
```
13+
14+
NOTE: We will need to define custom installation instructions for front-end
15+
and backend-based configs, depending on those we will have different
16+
`peerDependencies` for the ESLint configs.
17+
18+
And then, on your `.eslintrc` use:
19+
20+
```
21+
"extends": "@bufferapp/eslint-config-bufferapp/backend"
22+
#or
23+
"extends": "@bufferapp/eslint-config-bufferapp/frontend"
24+
```

eslint/backend.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
extends: [
3+
"./index.js",
4+
"plugin:@typescript-eslint/recommended",
5+
"prettier/@typescript-eslint"
6+
],
7+
plugins: [
8+
"typescript-eslint",
9+
],
10+
parser: "@typescript-eslint/parser",
11+
ignorePatterns: ["node_modules/*"],
12+
env: {
13+
node: true,
14+
es6: true,
15+
jest: true,
16+
}
17+
}

eslint/frontend.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
extends: [
3+
"./index.js",
4+
"plugin:react/recommended",
5+
"prettier/react"
6+
],
7+
plugins: [
8+
"react",
9+
],
10+
env: {
11+
browser: true,
12+
es6: true,
13+
jest: true,
14+
}
15+
}

eslint/index.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = {
2+
extends: [
3+
"standard",
4+
"eslint:recommended",
5+
"prettier",
6+
],
7+
parserOptions: {
8+
ecmaVersion: 2018,
9+
sourceType: "module"
10+
},
11+
plugins: ["prettier", "jest"],
12+
}
13+

eslint/package.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "@bufferapp/eslint-config-bufferapp",
3+
"version": "0.0.1",
4+
"description": "This package provides Buffer's ESLint as an extensible shared config, and specific backend/frontend setups.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "Mike San Román <mike@msanroman.io>",
10+
"license": "ISC",
11+
"peerDependencies": {
12+
"eslint": ">= 6"
13+
}
14+
}

0 commit comments

Comments
 (0)