Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hireupau/eslint-plugin-hu-vue

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hireupau/eslint-plugin-hu-vue - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1-beta.0

README.md

3

configs/recommended.js

@@ -6,5 +6,6 @@ module.exports = {

rules: {
'@hireupau/hu-vue/sort-component-registrations': 'error',
'@hireupau/hu-vue/sort-prop-definitions': 'error',
'@hireupau/hu-vue/sort-component-registrations': 'error',
'@hireupau/hu-vue/sort-prop-properties': 'error',
}
};
{
"name": "@hireupau/eslint-plugin-hu-vue",
"version": "0.1.0",
"version": "0.1.1-beta.0",
"description": "Hireup's vue eslint rules",
"main": "index.js",
"scripts": {
"preversion": "npm test",
"postversion": "git push && git push --tags",
"test": "jest"

@@ -8,0 +10,0 @@ },

@@ -0,7 +1,11 @@

const asyncImportComponents = require('./async-import-components');
const sortComponentRegistrations = require('./sort-component-registrations');
const sortPropDefinitions = require('./sort-prop-definitions');
const sortPropProperties = require('./sort-prop-properties');
module.exports = {
'async-import-components': asyncImportComponents,
'sort-component-registrations': sortComponentRegistrations,
'sort-prop-definitions': sortPropDefinitions,
'sort-prop-properties': sortPropProperties,
};

@@ -26,4 +26,4 @@ /**

},
create: function(context) {
return utils.executeOnVue(context, function(obj) {
create: context => {
return utils.executeOnVue(context, obj => {
if (!componentsAreSortedCorrectly(obj)) {

@@ -30,0 +30,0 @@ const componentNode = utils

@@ -26,4 +26,4 @@ /**

},
create: function(context) {
return utils.executeOnVue(context, function(obj) {
create: context => {
return utils.executeOnVue(context, obj => {
if (!propsAreSortedCorrectly(obj)) {

@@ -30,0 +30,0 @@ const propsNode = utils

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