Skip to content

Commit a3cc2d0

Browse files
author
amazon-meaisiah
committed
Eject from Standard to ESLint
1 parent f7f4596 commit a3cc2d0

File tree

13 files changed

+864
-488
lines changed

13 files changed

+864
-488
lines changed

.eslintignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# top-level and lambda function specific
2+
/node_modules
3+
/coverage
4+
/lambdas/static-asset-uploader/build/
5+
/lambdas/coverage/
6+
/lambdas/backend/node_modules/
7+
/lambdas/catalog-updater/node_modules/
8+
/lambdas/cfn-cognito-user-pools-client-settings/node_modules/
9+
/lambdas/cfn-cognito-user-pools-domain/node_modules/
10+
/lambdas/cognito-user-pools-confirmation-strategy/node_modules/
11+
/lambdas/dump-v3-account-data/node_modules/
12+
/lambdas/listener/node_modules/
13+
/lambdas/shared/node_modules/
14+
/lambdas/static-asset-uploader/node_modules/
15+
16+
# devportal specific
17+
18+
# we're committing the artifacts, don't need the modules
19+
# note, though, that we do need our patched version of swagger-ui and not the npm version
20+
/dev-portal/node_modules/
21+
/dev-portal/public/apigateway-js-sdk/**
22+
23+
# built artifacts
24+
/dev-portal/build
25+
26+
# coverage reporting
27+
/dev-portal/coverage
28+
29+
# details about setup needed for local dev; these are sensitive, do not commit them!
30+
/dev-portal/deployer.config.js
31+
/dev-portal/public/config.js
32+
33+
# misc
34+
npm-debug.log
35+
.DS_Store
36+
packaged*.yaml
37+
cognito.js
38+
.idea
39+
.vscode
40+
*.iml

.eslintrc.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
'use strict'
2+
3+
module.exports = {
4+
root: true,
5+
extends: 'standard',
6+
env: {
7+
jest: true
8+
}
9+
}

dev-portal/.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict'
2+
3+
module.exports = {
4+
extends: 'react-app'
5+
}

0 commit comments

Comments
 (0)