Skip to content

Commit dfbee8a

Browse files
committed
(chore) updating tools
1 parent d586a3b commit dfbee8a

14 files changed

+824
-413
lines changed

.eslintrc.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
parser: "@typescript-eslint/parser",
3+
extends: [
4+
"plugin:@typescript-eslint/recommended",
5+
"prettier/@typescript-eslint",
6+
"plugin:prettier/recommended",
7+
],
8+
settings: {
9+
react: {
10+
version: "detect", // Tells eslint-plugin-react to automatically detect the version of React to use
11+
},
12+
},
13+
globals: {
14+
Atomics: "readonly",
15+
SharedArrayBuffer: "readonly",
16+
},
17+
parserOptions: {
18+
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
19+
sourceType: "module", // Allows for the use of imports
20+
ecmaFeatures: {
21+
jsx: true, // Allows for the parsing of JSX
22+
},
23+
},
24+
rules: {},
25+
};

.eslintrc.json

-22
This file was deleted.

.lintstagedrc.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = {
2+
// Prettier
3+
'**/*.{md}': ['prettier --ignore-path .gitignore --write'],
4+
5+
// Eslint
6+
'**/*.{ts,tsx}': ['eslint --fix'],
7+
8+
// Jest
9+
'**/*.test.{ml,mli,mly,ts,js,json}': 'jest',
10+
}
11+

.prettierrc

-10
This file was deleted.

.vscode/settings.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
2-
"editor.formatOnSave": true,
2+
"editor.codeActionsOnSave": {
3+
"source.fixAll": true
4+
},
35
"search.exclude": {
46
"**/node_modules": true,
57
"**/bower_components": true,

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ All notable changes to this project will be documented in this file. See [standa
55
## Features
66

77
#12, #13 Supporting more input parameters
8+
#17 Use stack name to filter for current stack
9+
#23 Output to GitHub actions
810

911
## Bug Fixes

0 commit comments

Comments
 (0)