lintrunner 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 63f7d822ca84192e497deb7cab8700a7286fc75f
4
+ data.tar.gz: 31eb73ae028df0316e92285f6001566b2d302906
5
+ SHA512:
6
+ metadata.gz: bbb8f0aa100f0d2ac7f1efb6a978d2bddeb21743728fd5ded20f205ec43c3c980612b4d454b37202005edf862af6a24187cd68563a8e22a62660d2e0e50afadd
7
+ data.tar.gz: 2886e360b9dc47895253a296c6e088d3cd26e63de78510c82fadac909fc35f5b46f36fa7496cc7306c56cb99a486cfd33fd6361e6202205d8c06ce1e0b432c54
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ node_modules/
16
+ .eslintrc
17
+ .rubocop.yml
18
+ .scss-lint.yml
@@ -0,0 +1,30 @@
1
+ {
2
+ "include_paths": ["."],
3
+ "require": ["test.rb"],
4
+ "linters": {
5
+ "binding.pry check": {
6
+ "plugin": "BindingPryCheck",
7
+ "runner": "Repo",
8
+ "match": ".rb",
9
+ "disabled": "true"
10
+ },
11
+ "scss": {
12
+ "command": "scss-lint -f JSON --config .scss-lint.yml",
13
+ "parser": "SCSSLint",
14
+ "runner": "Diff",
15
+ "match": ".scss"
16
+ },
17
+ "rubocop": {
18
+ "command": "rubocop -f json --config .rubocop.yml",
19
+ "parser": "Rubocop",
20
+ "runner": "Repo",
21
+ "match": ".rb"
22
+ },
23
+ "eslint": {
24
+ "command": "eslint -f compact -c .eslintrc",
25
+ "parser": "Eslint",
26
+ "runner": "Repo",
27
+ "match": ".js"
28
+ }
29
+ }
30
+ }