Skip to content

Instantly share code, notes, and snippets.

@hsablonniere
Last active January 18, 2023 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hsablonniere/4095190 to your computer and use it in GitHub Desktop.
Save hsablonniere/4095190 to your computer and use it in GitHub Desktop.
HTML5 skeleton
{
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"esnext": true,
"immed": true,
"indent": 2,
"latedef": true,
"laxbreak": true,
"newcap": true,
"noarg": true,
"node": true,
"quotmark": "single",
"regexp": true,
"smarttabs": true,
"strict": true,
"trailing": true,
"undef": true,
"unused": true
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title></title>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<!-- ... -->
<script src="./index.js"></script>
</body>
</html>
'use strict';
(function () {
// ...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment