Loading browserslist→.browserslistrc +0 −0 File moved. View file .eslintrc.json 0 → 100644 +46 −0 Original line number Diff line number Diff line { "root": true, "ignorePatterns": [ "projects/**/*" ], "overrides": [ { "files": [ "*.ts" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@angular-eslint/recommended", "plugin:@angular-eslint/template/process-inline-templates" ], "rules": { "@angular-eslint/directive-selector": [ "error", { "type": "attribute", "prefix": "app", "style": "camelCase" } ], "@angular-eslint/component-selector": [ "error", { "type": "element", "prefix": "app", "style": "kebab-case" } ] } }, { "files": [ "*.html" ], "extends": [ "plugin:@angular-eslint/template/recommended" ], "rules": {} } ] } .gitignore +1 −0 Original line number Diff line number Diff line Loading @@ -29,3 +29,4 @@ /node_modules/ /reports/ /.tmpl/ .angular/* No newline at end of file .gitlab-ci.yml +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ include: variables: NG_CLI_IMAGE: trion/ng-cli-karma:14.2.6 NG_BUILD_ARGS: "build --prod" NG_BUILD_ARGS: "build --configuration production" # deploy: landing page (static/), mkdocs build (public/), Angular build (kicker/dist/) and aggregated kicker (kicker-aggregated/) S3_DEPLOY_FILES: "dist/kicker/" S3_STAGING_DISABLED: "true" Loading .gitpod.yml 0 → 100644 +9 −0 Original line number Diff line number Diff line # This configuration file was automatically generated by Gitpod. # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file) # and commit this file to your remote git repository to share the goodness with others. tasks: - init: npm install && npm run build command: npm run start Loading
.eslintrc.json 0 → 100644 +46 −0 Original line number Diff line number Diff line { "root": true, "ignorePatterns": [ "projects/**/*" ], "overrides": [ { "files": [ "*.ts" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@angular-eslint/recommended", "plugin:@angular-eslint/template/process-inline-templates" ], "rules": { "@angular-eslint/directive-selector": [ "error", { "type": "attribute", "prefix": "app", "style": "camelCase" } ], "@angular-eslint/component-selector": [ "error", { "type": "element", "prefix": "app", "style": "kebab-case" } ] } }, { "files": [ "*.html" ], "extends": [ "plugin:@angular-eslint/template/recommended" ], "rules": {} } ] }
.gitignore +1 −0 Original line number Diff line number Diff line Loading @@ -29,3 +29,4 @@ /node_modules/ /reports/ /.tmpl/ .angular/* No newline at end of file
.gitlab-ci.yml +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ include: variables: NG_CLI_IMAGE: trion/ng-cli-karma:14.2.6 NG_BUILD_ARGS: "build --prod" NG_BUILD_ARGS: "build --configuration production" # deploy: landing page (static/), mkdocs build (public/), Angular build (kicker/dist/) and aggregated kicker (kicker-aggregated/) S3_DEPLOY_FILES: "dist/kicker/" S3_STAGING_DISABLED: "true" Loading
.gitpod.yml 0 → 100644 +9 −0 Original line number Diff line number Diff line # This configuration file was automatically generated by Gitpod. # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file) # and commit this file to your remote git repository to share the goodness with others. tasks: - init: npm install && npm run build command: npm run start