We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24b90f3 commit 427395fCopy full SHA for 427395f
README.md
@@ -32,14 +32,24 @@ React specific rules are added separately along with the base rules. You can sim
32
}
33
```
34
35
+### Setup in a AWS CDK project
36
+
37
+All typescript rules compatible with the AWS CDK structure have been added separately and can be integrated by using the following configuration
38
39
+```json
40
+{
41
+ "extends": ["eslint-config-lucideus", "eslint-config-lucideus/cdk"]
42
+}
43
+```
44
45
## Running the linter
46
47
Add the following to your `package.json` within the `scripts` section to have an easy to use command:
48
49
```json
50
{
51
"scripts": {
- "lint": "./node_modules/.bin/eslint -c .eslintrc.json --ext .ts --ext .js src"
52
+ "lint": "./node_modules/.bin/eslint src"
53
54
55
0 commit comments