Socket
Socket
Sign inDemoInstall

eslint-config-andersos

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-andersos - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

16

CHANGELOG.md

@@ -1,12 +0,16 @@

## 0.1.1 (2015-10-24)
## 0.2.0 2016.02.13
Update Travis Node version
Update to eslint 2
Base on eslint-config-standard
## 0.1.1 2015.10.24
Turn off rule eol-last
## 0.1.0 (2015-09-22)
## 0.1.0 2015.09.22
Add React rules
## 0.0.2 (2015-09-18)
## 0.0.2 2015.09.18
Change indent rule
## 0.0.1 (2015-07-17)
Module created
## 0.0.1 2015.07.17
Module created

@@ -1,1 +0,6 @@

module.exports = require('./eslintrc.json');
module.exports = {
extends: require.resolve('eslint-config-standard'),
rules: {
'semi': [2, 'always']
}
};
{
"name": "eslint-config-andersos",
"version": "0.1.1",
"version": "0.2.0",
"description": "ESLint config for @Andersos",

@@ -9,4 +9,5 @@ "license": "MIT",

"test": "node test/config-test.js",
"pretest": "eslint -c ./eslintrc.json .",
"prepublish": "npm prune && npm test"
"pretest": "eslint -c ./index.js .",
"prepublish": "npm prune && npm test",
"outdated": "npm outdated --depth=0"
},

@@ -31,4 +32,10 @@ "keywords": [

"devDependencies": {
"eslint": "1.7.3"
"eslint": "1.10.3"
},
"dependencies": {
"eslint": "^2.0.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2"
}
}
'use strict';
var assert = require('assert');
var config = require('../');
var config = require('../index.js');
// Ensure that the config has some expected values
assert.equal(config.env.node, true);
assert.equal(config.rules.radix, 2);
assert(require(config.extends).env.node);
assert.equal(config.rules.semi[1], 'always');

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc