Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
canonical order for plugin name, then plugin vsn
Browse files Browse the repository at this point in the history
  • Loading branch information
andreineculau committed Mar 5, 2020
1 parent 69fdbb5 commit 5ede3e6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configs/jasmine.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NOTE that this is an addon config. An eslint plugin needs to be installed manually.

let _pluginVsn = '^2.10.1';
let _pluginName = 'eslint-plugin-jasmine';
let _pluginVsn = '^2.10.1';
let _pluginActualVsn = require(`${_pluginName}/package.json`).version;
let _semver = require('semver');

Expand Down
2 changes: 1 addition & 1 deletion configs/jest.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NOTE that this is an addon config. An eslint plugin needs to be installed manually.

let _pluginVsn = '^22.17.0';
let _pluginName = 'eslint-plugin-jest';
let _pluginVsn = '^22.17.0';
let _pluginActualVsn = require(`${_pluginName}/package.json`).version;
let _semver = require('semver');

Expand Down
2 changes: 1 addition & 1 deletion configs/mocha.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NOTE that this is an addon config. An eslint plugin needs to be installed manually.

let _pluginVsn = '^6.1.1';
let _pluginName = 'eslint-plugin-mocha';
let _pluginVsn = '^6.1.1';
let _pluginActualVsn = require(`${_pluginName}/package.json`).version;
let _semver = require('semver');

Expand Down
2 changes: 1 addition & 1 deletion configs/protractor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NOTE that this is an addon config. An eslint plugin needs to be installed manually.

let _pluginVsn = '^2.1.1';
let _pluginName = 'eslint-plugin-protractor';
let _pluginVsn = '^2.1.1';
let _pluginActualVsn = require(`${_pluginName}/package.json`).version;
let _semver = require('semver');

Expand Down
2 changes: 1 addition & 1 deletion configs/typescript.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NOTE that this is an addon config. An eslint plugin needs to be installed manually.

let _pluginVsn = '^2.6.0';
let _pluginName = '@typescript-eslint/eslint-plugin';
let _pluginVsn = '^2.6.0';
let _pluginActualVsn = require(`${_pluginName}/package.json`).version;
let _semver = require('semver');

Expand Down
2 changes: 1 addition & 1 deletion configs/vue.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NOTE that this is an addon config. An eslint plugin needs to be installed manually.

let _pluginVsn = '^5.2.2';
let _pluginName = 'eslint-plugin-vue';
let _pluginVsn = '^5.2.2';
let _pluginActualVsn = require(`${_pluginName}/package.json`).version;
let _semver = require('semver');

Expand Down

0 comments on commit 5ede3e6

Please sign in to comment.