Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
80 changes: 0 additions & 80 deletions .config/karma/base.js

This file was deleted.

13 changes: 0 additions & 13 deletions .config/karma/debug.js

This file was deleted.

5 changes: 0 additions & 5 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,15 @@ src/interpreter/plugin/3rdparty

# Configurations
*.config.js
karma.*
doc
test/unit/_setupFiles/*.js

# Auto-generated directories
commonjs
coverage
dist
doc
es
languages
lib
script
test-jasmine
test-jest
typedoc
typings
22 changes: 1 addition & 21 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,19 @@ module.exports = {
'@typescript-eslint',
'license-header',
'jsdoc',
'jasmine',
'jest',
],
env: {
jasmine: true,
'jest/globals': true,
},
parserOptions: {
tsconfigRootDir: __dirname,
project: './tsconfig.test.json',
project: './tsconfig.json',
createDefaultProgram: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:jasmine/recommended',
'plugin:jest/recommended',
'plugin:jest/style',
],
rules: {
// Automatic fixers
Expand Down Expand Up @@ -122,13 +115,6 @@ module.exports = {
MethodDefinition: true,
}
}],
'jest/no-jasmine-globals': 'off',
'jest/no-alias-methods': 'off',
'jest/no-conditional-expect': 'warn',
'jest/no-standalone-expect': 'warn',
'jest/no-test-prefixes': 'off',
'jest/prefer-to-be': 'warn',
'jest/prefer-to-have-length': 'off',
},
overrides: [
{
Expand All @@ -143,11 +129,5 @@ module.exports = {
'sort-keys': ['error', 'asc'],
}
},
{
files: ['**/*.spec.ts'],
rules: {
'@typescript-eslint/no-non-null-assertion': 'off',
}
}
],
}
14 changes: 0 additions & 14 deletions .github/codecov.yml

This file was deleted.

69 changes: 0 additions & 69 deletions .github/workflows/performance.yml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/test.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.idea/
.vscode
/commonjs/
/coverage/
/dist/
/doc/
/docs/api/
Expand All @@ -13,8 +12,6 @@
/es/
/languages/
/lib/
/test-jasmine/
/test-jest/
node_modules/
/typings/
/storage/
Expand Down
1 change: 0 additions & 1 deletion .typedoc.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = {
"exclude": [
"./test/**",
"./src/interpreter/**",
"./src/i18n/**",
"./src/parser/**",
Expand Down
18 changes: 3 additions & 15 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,16 @@ setup: ## Setup project
compile: ## Compile to javascript
@npm run compile

test: ## Run tests
@npm run test
check: typecheck lint ## Check whether code is working correctly (types + lint)

unit: ## Run unit tests
@npm run test:unit

test-ci: ## Separate test configuration for CI environment
@npm run test

check: typecheck test ## Check whether code is working correctly (types + specs)

full: check lint-fix ## Check whether code is ready to commit (types + specs + lint)
full: check lint-fix ## Check whether code is ready to commit (types + lint)

lint: ## Show linting errors
@npm run lint

lint-fix: ## Fix linting errors
@npm run lint:fix

coverage: ## Run tests and show coverage
@npm run test:coverage

doc: ## Generate documentation
@npm run typedoc:build

Expand Down Expand Up @@ -65,6 +53,6 @@ verify-production-licenses:
help: ## Show all make commands
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: test coverage benchmark doc servedoc
.PHONY: doc servedoc

.DEFAULT_GOAL := help
Loading
Loading