Skip to content

Commit

Permalink
Merge pull request #608 from amplify-education/hotfix/hosted-zone-fix
Browse files Browse the repository at this point in the history
Lint improvements
  • Loading branch information
rddimon committed Dec 7, 2023
2 parents fc19c93 + 17e34c7 commit 40eaf7a
Show file tree
Hide file tree
Showing 35 changed files with 7,101 additions and 5,062 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
41 changes: 41 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"env": {
"browser": true,
"es2021": true,
"commonjs": true,
"node": true,
"mocha": true
},
"extends": [
"standard",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"arrow-parens": [
"error",
"always"
],
"complexity": [
"error",
15
],
"guard-for-in": "error"
}
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [7.3.3] - 2023-12-07

### Changed
- Switched from `tslint` to `eslint`
- Code refactoring and reformat

## [7.3.2] - 2023-12-07

### Fixed
Expand Down

0 comments on commit 40eaf7a

Please sign in to comment.