New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-kswedberg

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-kswedberg - npm Package Compare versions

Comparing version 3.0.1 to 3.1.0

vue.js

2

package.json
{
"name": "eslint-config-kswedberg",
"version": "3.0.1",
"version": "3.1.0",
"description": "A shareable eslint config",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -140,2 +140,11 @@

}],
'comma-dangle': [
'warn', {
arrays: 'always-multiline',
objects: 'always-multiline',
imports: 'never',
exports: 'never',
functions: 'ignore'
}
],
'comma-spacing': ['error', {before: false, after: true}],

@@ -152,3 +161,3 @@ 'eol-last': 'warn',

{
MemberExpression: 'off'
MemberExpression: 0
}

@@ -279,1 +288,54 @@ ],

};
module.exports.vue = {
'vue/attribute-hyphenation': 'off',
'vue/html-self-closing': [
'warn',
{
svg: 'any',
}
],
'vue/html-closing-bracket-newline': 'warn',
'vue/html-indent': 'warn',
'vue/max-attributes-per-line': [
'warn', {
singleline: 3,
multiline: {
max: 1,
allowFirstLine: false,
},
},
],
'vue/multiline-html-element-content-newline': 'warn',
'vue/no-spaces-around-equal-signs-in-attribute': 'warn',
'vue/singleline-html-element-content-newline': 'off',
'vue/this-in-template': 'error',
'vue/v-bind-style': 'warn',
'vue/v-on-style': 'warn',
'vue/v-on-function-call': ['warn', 'never'],
'vue/attributes-order': [
'error',
{
order: [
[
'CONDITIONALS',
'DEFINITION',
'LIST_RENDERING',
],
[
'TWO_WAY_BINDING',
'OTHER_DIRECTIVES',
'RENDER_MODIFIERS',
'CONTENT',
],
'EVENTS',
[
'UNIQUE',
'GLOBAL',
'OTHER_ATTR',
]
]
}
]
};
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