aaf-mdqt 0.8.9 → 0.8.10

Sign up to get free protection for your applications and to get access to all the features.
data/eslint.config.js DELETED
@@ -1,85 +0,0 @@
1
- /* eslint-disable no-undef */
2
- const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended')
3
- const eslintPluginYml = require('eslint-plugin-yml')
4
- const eslint = require('@eslint/js')
5
- const globals = require('globals')
6
-
7
- const common = [
8
- eslintPluginPrettierRecommended,
9
- eslint.configs.recommended,
10
- ...eslintPluginYml.configs['flat/recommended'],
11
- {
12
- languageOptions: {
13
- parserOptions: {
14
- sourceType: 'module'
15
- },
16
- globals: {
17
- ...globals.browser,
18
- ...globals.node
19
- }
20
- },
21
- rules: {
22
- 'class-methods-use-this': 'warn',
23
- 'no-param-reassign': [
24
- 'error',
25
- {
26
- props: false
27
- }
28
- ],
29
- 'no-tabs': 'error',
30
- 'no-plusplus': 'off',
31
- 'no-underscore-dangle': 'off',
32
- 'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
33
- 'import/extensions': 'off',
34
- 'import/first': 'off',
35
- 'import/no-unresolved': 'off',
36
- 'prettier/prettier': 'error',
37
- 'yml/plain-scalar': 'off',
38
- 'yml/quotes': [
39
- 'error',
40
- {
41
- prefer: 'single'
42
- }
43
- ],
44
- 'yml/indent': 'off',
45
- 'yml/sort-keys': 'off',
46
- 'yml/no-empty-mapping-value': 'off',
47
- 'yml/no-multiple-empty-lines': [
48
- 'error',
49
- {
50
- max: 1
51
- }
52
- ],
53
- 'yml/no-empty-document': 'off'
54
- },
55
- settings: {}
56
- },
57
- {
58
- ignores: [
59
- '.DS_Store',
60
- 'node_modules/',
61
- 'tmp/',
62
- 'coverage/',
63
- '.vscode/',
64
- 'yarn.lock',
65
- 'Gemfile.lock',
66
- '.env*',
67
- '!.env*.dist',
68
- 'coverage/',
69
- 'public/assets/',
70
- '**/.terraform/',
71
- 'tmp/*',
72
- '.idea/*',
73
- 'dump.rdb',
74
- '*.iml',
75
- '**/kustomization.yaml',
76
- '**/templates/',
77
- '**/values.yaml',
78
- '**/templates/',
79
- '.github/',
80
- '.torba/'
81
- ]
82
- }
83
- ]
84
-
85
- //EOF_DISTRIBUTION
@@ -1,8 +0,0 @@
1
- require 'rubygems'
2
- require 'cucumber'
3
- require 'cucumber/rake/task'
4
-
5
- desc "Run Cucumber tests"
6
- Cucumber::Rake::Task.new(:features) do |t|
7
- t.cucumber_opts = "features --format pretty"
8
- end
data/lib/tasks/spec.rake DELETED
@@ -1,5 +0,0 @@
1
- require "rspec/core/rake_task"
2
-
3
-
4
-
5
- RSpec::Core::RakeTask.new(:spec)
data/lib/tasks/tests.rake DELETED
@@ -1,6 +0,0 @@
1
-
2
- desc "Run all tests and gather coverage information"
3
- task :tests => [:spec, :features] do
4
-
5
-
6
- end
data/lib/tasks/yard.rake DELETED
@@ -1,6 +0,0 @@
1
- require 'yard'
2
-
3
- YARD::Rake::YardocTask.new do |t|
4
- t.files = ['features/*.feature', 'features/*.rb']
5
- t.options = ['--any', '--extra', '--opts'] # optional
6
- end
data/package.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "name": "app-name",
3
- "private": true,
4
- "dependencies": {},
5
- "version": "0.1.0",
6
- "devDependencies": {
7
- "eslint": "9.17.0",
8
- "eslint-config-prettier": "9.1.0",
9
- "eslint-plugin-babel": "5.3.1",
10
- "eslint-plugin-import": "2.31.0",
11
- "eslint-plugin-prettier": "5.2.1",
12
- "eslint-plugin-yml": "1.16.0",
13
- "prettier": "3.4.2"
14
- },
15
- "scripts": {
16
- "lint": "eslint . --ignore-path .eslintignore --quiet"
17
- }
18
- }
data/trivy.yaml DELETED
@@ -1,4 +0,0 @@
1
- scan:
2
- skip-dirs: []
3
- skip-files:
4
- - .env