GithubHelp home page GithubHelp logo

htmlhintrc's Introduction

htmlhintrc

htmlhintrc

Usage

Step 1. Install htmlhintrc

npm i -D htmlhintrc

Step 2. Copy .htmlhintrc to your project root

# cd your project root
cp node_modules/htmlhintrc/.htmlhintrc .htmlhintrc

Rules

{
  // 标签名小写
  "tagname-lowercase": true,
  // 属姓名小写
  "attr-lowercase": true,
  // 属性值使用双引号
  "attr-value-double-quotes": true,
  // 属性值可以为空
  "attr-value-not-empty": false,
  // 不能有重复属性值
  "attr-no-duplication": true,
  // 不需要声明
  "doctype-first": false,
  // 需要关闭所有非空元素<p><p>
  "tag-pair": true,
  // 需要关闭所有空元素<br/>
  "tag-self-close": true,
  // 需要转义特殊字符"&" "<" ">" ...
  "spec-char-escape": true,
  // ID不能重复
  "id-unique": true,
  // src值不能为空
  "src-not-empty": true,
  // 不需要每个html文件都拥有title元素
  "title-require": false,
  // 如果存在alt属性,则需要添加alt属性值
  "alt-require": true,
  // 不需要每个html文件都声明doctype
  "doctype-html5": false,
  // id, class的值以中划线分隔
  "id-class-value": "dash",
  // 不允许添加<style type="text/css"></style>标签
  "style-disabled": true,
  // 不允许添加行内css值<div style="color:red"></div>
  "inline-style-disabled": true,
  // 允许行内js脚本
  "inline-script-disabled": false,
  // 使用2个space代替tab
  "space-tab-mixed-disabled": "space2",
  // 允许id和class出现ad值,注含有ad的id或者class会被adblock软件block
  "id-class-ad-disabled": false,
  // 允许href属性值使用相对和绝对路径
  "href-abs-or-rel": false,
  // 不允许属性值使用不安全的字符
  "attr-unsafe-chars": true,
  // 不允许在head标签中使用script标签
  "head-script-disabled": true
}

htmlhintrc's People

Stargazers

Fabio Cencetti avatar

Watchers

James Cloos avatar Sora Liu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.