Skip to content

Commit

Permalink
fix(security): prevent prototype pollution
Browse files Browse the repository at this point in the history
thanks @msrkp
  • Loading branch information
bigopon committed Jul 1, 2021
2 parents 0624b03 + d3bb6fa commit 8f0bbce
Show file tree
Hide file tree
Showing 46 changed files with 15,758 additions and 8,966 deletions.
13 changes: 12 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,23 @@ map-2: &filter_only_tag
orbs:
v1: aurelia/v1@volatile

executors:
docker-circleci:
parameters:
node:
type: string
default: "15.4.0"
docker:
- image: "circleci/node:<< parameters.node >>-buster-browsers"

workflows:
main:
jobs:
- v1/build_test
- v1/build_test:
use_jspm: false
- v1/build_merge:
<<: *filter_only_develop
use_jspm: false
requires:
- v1/build_test
- v1/npm_publish:
Expand Down
18 changes: 18 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**@type {import('eslint').CLIEngine.Options} */
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
"prefer-rest-params": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"prefer-const": 0,
}
};
3 changes: 0 additions & 3 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ bower_components
.idea
.DS_STORE
build/reports
dist
coverage
13 changes: 0 additions & 13 deletions build/args.js

This file was deleted.

65 changes: 0 additions & 65 deletions build/babel-options.js

This file was deleted.

33 changes: 0 additions & 33 deletions build/paths.js

This file was deleted.

130 changes: 0 additions & 130 deletions build/tasks/build.js

This file was deleted.

9 changes: 0 additions & 9 deletions build/tasks/clean.js

This file was deleted.

10 changes: 0 additions & 10 deletions build/tasks/dev.js

This file was deleted.

46 changes: 0 additions & 46 deletions build/tasks/doc.js

This file was deleted.

10 changes: 0 additions & 10 deletions build/tasks/lint.js

This file was deleted.

Loading

0 comments on commit 8f0bbce

Please sign in to comment.