@admc.com/eslintplugin-sn-test 1.0.0 → 1.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.
@@ -0,0 +1 @@
1
+ gs.log(patternId, "2nd");
@@ -0,0 +1 @@
1
+ gs.log(request.queryParams, "2nd");
@@ -0,0 +1 @@
1
+ gs.info(patternId, "2nd");
@@ -1,7 +1,8 @@
1
1
  // Test availability of scoped vars from the different component lists:
2
- gs.info("a message"); // coreServerObjects.txt
3
- // eslint-disable-next-line camelcase
2
+ /* eslint-disable camelcase */
3
+ gs.info(new sn_ws_err.NotAcceptableError("fake err")); // coreServerObjects.txt
4
4
  gs.info(Object.keys(new sn_codesearch.CodeSearch()).length); // SIScopes
5
+ /* eslint-enable camelcase */
5
6
 
6
7
  var varsAreAllowed = "a val";
7
8
  gs.info(varsAreAllowed);
@@ -0,0 +1,2 @@
1
+ gs.info(request.http.inputParam);
2
+ response.setStatus(200);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc.com/eslintplugin-sn-test",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "External tests for ESLint plugin @admc.com/eslint-plugin-sn",
5
5
  "scripts": {
6
6
  "test": "mocha --recursive",