This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"types": { | |
"feat": { | |
"description": "A new feature", | |
"title": "Features" | |
}, | |
"fix": { | |
"description": "A bug fix", | |
"title": "Bug Fixes" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root: true | |
parser: babel-eslint | |
env: | |
browser: true | |
node: true | |
es6: true | |
extends: | |
- eslint:recommended | |
- plugin:import/errors | |
- plugin:import/warnings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends: stylelint-config-standard | |
plugins: | |
- stylelint-selector-bem-pattern | |
- stylelint-scss | |
- stylelint-order | |
rules: | |
# Wrap lines greater than 120 characters | |
max-line-length: 120 | |
# Override stylelint-config-standard - we only use CSS comments for annotations that don't warrant an empty line | |
comment-empty-line-before: null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-07-15T03:31:51.846Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
const nav = document.querySelector(".kss-nav"); | |
const el = document.getElementById("codebase"); | |
function getRules(el) { | |
var StyleSheetList = document.styleSheets[4], | |
result = []; | |
el.matches = | |
el.matches || |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#AND | |
<b:if cond='data:blog.pageType == "index"'> | |
<b:if cond='data:blog.searchQuery'> | |
<!--search_page AND index_page--> | |
</b:if> | |
</b:if> | |
#OR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<b:if cond='data:blog.pageType in ["index","archive"]'> | |
<script> | |
//<![CDATA[ | |
!function (t, e) { | |
t.InfiniteScroll = function (n) { | |
function r(t, n) { | |
return n = n || e, n.querySelectorAll(t) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//error_reporting(0); | |
class Harian extends CI_Model { | |
function __construct() | |
{ | |
// Call the Model constructor | |
parent::__construct(); | |
} | |