mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 02:23:39 -05:00
Add dependencies for Next (node), React (node), and Standard (ruby) (#4446)
* update_deps * Revert * Adding "standard" gem to gemfile * Adding "Next" and "React" to package.json * Revert * Missed package.json changes * Resolving conflicts, standard requires rubocop 1.48.1 * update packages Signed-off-by: Zack Koppert <zkoppert@github.com> * Updating the gemfile dependencies * Updating yarn.lock file * Fix react-intl dependency * Fix spacing of Gemfile.lock for linting --------- Signed-off-by: Zack Koppert <zkoppert@github.com> Co-authored-by: Zack Koppert <zkoppert@github.com>
This commit is contained in:
parent
1d0a3be314
commit
6dca1f678f
4 changed files with 3770 additions and 256 deletions
11
dependencies/Gemfile
vendored
11
dependencies/Gemfile
vendored
|
@ -4,10 +4,11 @@ source "https://rubygems.org"
|
|||
|
||||
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
||||
|
||||
gem "rubocop", "~> 1.54.1"
|
||||
gem "rubocop", "~> 1.48.1"
|
||||
gem "rubocop-github", "~> 0.20.0"
|
||||
gem "rubocop-minitest", "~> 0.31.0"
|
||||
gem "rubocop-performance", "~>1.18.0"
|
||||
gem "rubocop-rails", "~> 2.20"
|
||||
gem "rubocop-minitest", "~> 0.30.0"
|
||||
gem "rubocop-performance", "~>1.16.0"
|
||||
gem "rubocop-rails", "~> 2.19"
|
||||
gem "rubocop-rake", "~> 0.6.0"
|
||||
gem "rubocop-rspec", "~> 2.22.0"
|
||||
gem "rubocop-rspec", "~> 2.19.0"
|
||||
gem "standard", "~>1.25"
|
||||
|
|
39
dependencies/Gemfile.lock
vendored
39
dependencies/Gemfile.lock
vendored
|
@ -1,11 +1,12 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
activesupport (7.0.5)
|
||||
activesupport (6.1.7.3)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 1.6, < 2)
|
||||
minitest (>= 5.1)
|
||||
tzinfo (~> 2.0)
|
||||
zeitwerk (~> 2.3)
|
||||
ast (2.4.2)
|
||||
concurrent-ruby (1.2.2)
|
||||
i18n (1.14.1)
|
||||
|
@ -22,58 +23,60 @@ GEM
|
|||
rainbow (3.1.1)
|
||||
regexp_parser (2.8.1)
|
||||
rexml (3.2.5)
|
||||
rubocop (1.54.1)
|
||||
rubocop (1.48.1)
|
||||
json (~> 2.3)
|
||||
language_server-protocol (>= 3.17.0)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 3.2.2.3)
|
||||
parser (>= 3.2.0.0)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
regexp_parser (>= 1.8, < 3.0)
|
||||
rexml (>= 3.2.5, < 4.0)
|
||||
rubocop-ast (>= 1.28.0, < 2.0)
|
||||
rubocop-ast (>= 1.26.0, < 2.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (>= 2.4.0, < 3.0)
|
||||
rubocop-ast (1.29.0)
|
||||
parser (>= 3.2.1.0)
|
||||
rubocop-capybara (2.18.0)
|
||||
rubocop (~> 1.41)
|
||||
rubocop-factory_bot (2.23.1)
|
||||
rubocop (~> 1.33)
|
||||
rubocop-github (0.20.0)
|
||||
rubocop (>= 1.37)
|
||||
rubocop-performance (>= 1.15)
|
||||
rubocop-rails (>= 2.17)
|
||||
rubocop-minitest (0.31.0)
|
||||
rubocop-minitest (0.30.0)
|
||||
rubocop (>= 1.39, < 2.0)
|
||||
rubocop-performance (1.18.0)
|
||||
rubocop-performance (1.16.0)
|
||||
rubocop (>= 1.7.0, < 2.0)
|
||||
rubocop-ast (>= 0.4.0)
|
||||
rubocop-rails (2.20.2)
|
||||
rubocop-rails (2.19.1)
|
||||
activesupport (>= 4.2.0)
|
||||
rack (>= 1.1)
|
||||
rubocop (>= 1.33.0, < 2.0)
|
||||
rubocop-rake (0.6.0)
|
||||
rubocop (~> 1.0)
|
||||
rubocop-rspec (2.22.0)
|
||||
rubocop-rspec (2.19.0)
|
||||
rubocop (~> 1.33)
|
||||
rubocop-capybara (~> 2.17)
|
||||
rubocop-factory_bot (~> 2.22)
|
||||
ruby-progressbar (1.13.0)
|
||||
standard (1.26.0)
|
||||
language_server-protocol (~> 3.17.0.2)
|
||||
rubocop (~> 1.48.1)
|
||||
rubocop-performance (~> 1.16.0)
|
||||
tzinfo (2.0.6)
|
||||
concurrent-ruby (~> 1.0)
|
||||
unicode-display_width (2.4.2)
|
||||
zeitwerk (2.6.8)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
rubocop (~> 1.54.1)
|
||||
rubocop (~> 1.48.1)
|
||||
rubocop-github (~> 0.20.0)
|
||||
rubocop-minitest (~> 0.31.0)
|
||||
rubocop-performance (~> 1.18.0)
|
||||
rubocop-rails (~> 2.20)
|
||||
rubocop-minitest (~> 0.30.0)
|
||||
rubocop-performance (~> 1.16.0)
|
||||
rubocop-rails (~> 2.19)
|
||||
rubocop-rake (~> 0.6.0)
|
||||
rubocop-rspec (~> 2.22.0)
|
||||
rubocop-rspec (~> 2.19.0)
|
||||
standard (~> 1.25)
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.5
|
||||
2.3.26
|
||||
|
|
3967
dependencies/package-lock.json
generated
vendored
3967
dependencies/package-lock.json
generated
vendored
File diff suppressed because it is too large
Load diff
9
dependencies/package.json
vendored
9
dependencies/package.json
vendored
|
@ -4,7 +4,7 @@
|
|||
"@coffeelint/cli": "^5.2.11",
|
||||
"@react-native-community/eslint-config": "^3.2.0",
|
||||
"@react-native-community/eslint-plugin": "^1.3.0",
|
||||
"@stoplight/spectral": "^6.5.0",
|
||||
"@stoplight/spectral": "^6.1.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.60.0",
|
||||
"@typescript-eslint/parser": "^5.61.0",
|
||||
"asl-validator": "^3.6.1",
|
||||
|
@ -29,12 +29,19 @@
|
|||
"jscpd": "^3.5.9",
|
||||
"lodash": "^4.17.21",
|
||||
"markdownlint-cli": "^0.35.0",
|
||||
"next": "^13.4.12",
|
||||
"next-pwa": "^5.6.0",
|
||||
"node-fetch": "^3.3.1",
|
||||
"npm-groovy-lint": "^11.1.1",
|
||||
"postcss-less": "^6.0.0",
|
||||
"prettier": "^3.0.0",
|
||||
"prettyjson": "^1.2.5",
|
||||
"pug": "^3.0.2",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-intl": "^6.4.4",
|
||||
"react-redux": "^8.1.2",
|
||||
"react-router-dom": "^6.14.2",
|
||||
"sql-lint": "1.0.0",
|
||||
"standard": "^17.1.0",
|
||||
"stylelint": "^15.10.1",
|
||||
|
|
Loading…
Reference in a new issue